1 # Simple workflow for deploying static content to GitHub Pages
2 name: Deploy static content to Pages
5 # Runs on pushes/marge targeting the default branch
11 # Allows you to run this workflow manually from the Actions tab
14 # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
20 # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21 # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
24 cancel-in-progress: false
27 # Single deploy job since we're just deploying
31 url: ${{ steps.deployment.outputs.page_url }}
32 runs-on: ubuntu-latest
35 uses: actions/checkout@v4
37 uses: actions/configure-pages@v4
38 - name: Upload artifact
39 uses: actions/upload-pages-artifact@v3
43 - name: Deploy to GitHub Pages
45 uses: actions/deploy-pages@v4