Skip to content

feat(web): Vitreous download page + release/signing pipeline (#34) #1

feat(web): Vitreous download page + release/signing pipeline (#34)

feat(web): Vitreous download page + release/signing pipeline (#34) #1

Workflow file for this run

name: Deploy download page to GitHub Pages
# Publishes the static site in site/ to GitHub Pages on every push to main.
# Repo Pages source must be set to "GitHub Actions" (configured once).
on:
push:
branches: [main]
paths:
- 'site/**'
- '.github/workflows/pages.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: site
- id: deployment
uses: actions/deploy-pages@v4