Skip to content

Clean up 24.9.2 from static folder (#113) #5

Clean up 24.9.2 from static folder (#113)

Clean up 24.9.2 from static folder (#113) #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- dev
paths:
- static/**
- .github/workflows/gh-pages.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
- uses: actions/upload-pages-artifact@v3.0.1
with:
path: static
retention-days: 1
- name: Setup Pages
uses: actions/configure-pages@v5.0.0
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5