Skip to content

Switch image name for website GHA #2

Switch image name for website GHA

Switch image name for website GHA #2

name: Build and deploy site
on:
workflow_dispatch:
push:
branches:
- main
- specky
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/nbisweden/workshop-reproducible-research/build-and-deploy-website:specky
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build website with Quarto
uses: quarto-dev/quarto-actions/render@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/'
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4