Added links to nbis course catalogue and scilifelab training hub #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Setup quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: 1.5.53 | |
tinytex: true | |
- name: Render and publish | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
render: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} |