Rename deploy
env/GHA to publish
for clarity
#2
Workflow file for this run
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: Render and publish site | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- specky | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Deploy on GitHub Pages | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
container: ghcr.io/nbisweden/workshop-reproducible-research/publish:specky | ||
with: | ||
target: gh-pages | ||
render: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |