Skip to content

Pages

Pages #2

Workflow file for this run

name: Pages
on:
workflow_run:
workflows:
- One
- Two
branches:
- main
types:
- completed
jobs:
Deploy:
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Download
uses: actions/download-artifact@v4
with:
path: pages
pattern: pages-*
merge-multiple: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: pages
- name: Deploy
uses: actions/deploy-pages@v4