Skip to content

Commit

Permalink
Update build-pages.yml
Browse files Browse the repository at this point in the history
Updated build script to avoid deprecation
  • Loading branch information
RickGelhausen authored Jun 25, 2024
1 parent 2cf71a4 commit 6d35807
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-pages.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: build-github-pages
env:
GITHUB_ACTOR: BackofenLab
GITHUB_REPOSITORY: BackofenLab/V_RNA-pages
GITHUB_REPOSITORY: BackofenLab/BioinformaticsII-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

on:
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
shell: bash

- name: create environment with mamba
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
mamba-version: "*"
channels: conda-forge,defaults
Expand All @@ -48,11 +48,11 @@ jobs:
Rscript -e "rmarkdown::render_site()"
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'docs/'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 6d35807

Please sign in to comment.