Merge pull request #5141 from solgenomics/topic/replace_empty_fixture
[sgn.git] / .github / workflows / static.yml
blob48f06e057b6a375919201c5853b59e2dd520062e
1 # Simple workflow for deploying static content to GitHub Pages
2 name: Deploy static content to Pages
4 on:
5   # Runs on pushes/marge targeting the default branch
6   push:
7     branches: ["master"]
8     paths:
9       - 'docs/**'
11   # Allows you to run this workflow manually from the Actions tab
12   workflow_dispatch:
14 # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15 permissions:
16   contents: read
17   pages: write
18   id-token: write
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.
22 concurrency:
23   group: "pages"
24   cancel-in-progress: false
26 jobs:
27   # Single deploy job since we're just deploying
28   deploy_static_pages:
29     environment:
30       name: github-pages
31       url: ${{ steps.deployment.outputs.page_url }}
32     runs-on: ubuntu-latest
33     steps:
34       - name: Checkout
35         uses: actions/checkout@v4
36       - name: Setup Pages
37         uses: actions/configure-pages@v4
38       - name: Upload artifact
39         uses: actions/upload-pages-artifact@v3
40         with:
41           # Upload docs only
42           path: './docs'
43       - name: Deploy to GitHub Pages
44         id: deployment
45         uses: actions/deploy-pages@v4
47