Skip to content

Commit

Permalink
ci: Add GitHub Pages deployment on push
Browse files Browse the repository at this point in the history
  • Loading branch information
yorifuji committed Apr 8, 2024
1 parent 43f356b commit f071997
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deliver-pages-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deliver for GitHub Pages on push

run-name: Deliver for GitHub Pages on push ${{ (vars.RUNS_ON_SELF_HOSTED == null && '(on GitHub-hosted)') || '(on self-hosted)' }}

on:
push:
branches:
- main

jobs:
pages:
uses: ./.github/workflows/deliver-pages.yml
secrets: inherit
permissions:
contents: read
pages: write
id-token: write

action-timeline:
needs: pages
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- uses: Kesin11/actions-timeline@v2

0 comments on commit f071997

Please sign in to comment.