Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Tighten volume and spread labels #78

Tighten volume and spread labels

Tighten volume and spread labels #78

Workflow file for this run

name: Deploy static site to Pages
on:
push:
branches: ["main"]
workflow_run:
workflows: ["Publish stories from Airtable"]
types: [completed]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4