Skip to content

clhain is running this workflow #3

clhain is running this workflow

clhain is running this workflow #3

Workflow file for this run

name: GitHub Pages
run-name: ${{ github.actor }} is running this workflow
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
# Single deploy job no building
deploy:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
permissions:
id-token: write
pages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
# upload pages directory
path: './pages'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2