Skip to content

Commit

Permalink
Add manual pages deployment to get version file
Browse files Browse the repository at this point in the history
  • Loading branch information
Dentosal committed Jun 23, 2024
1 parent 98a6cf6 commit d10d648
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- master

jobs:
publish-pages:
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu:latest
steps:
- uses: actions/checkout@v3

- uses: actions/configure-pages@v1
- run: cp .git/refs/heads/master version.txt
- uses: actions/upload-pages-artifact@v1
with:
path: .
- uses: actions/deploy-pages@v2

0 comments on commit d10d648

Please sign in to comment.