We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1068960 commit 8826c44Copy full SHA for 8826c44
.github/workflows/rebuild-pages.yml
@@ -0,0 +1,15 @@
1
+name: Rebuild Pages
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ trigger-rebuild:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Trigger GitHub Pages rebuild
11
+ run: |
12
+ curl -X POST \
13
+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
14
+ -H "Accept: application/vnd.github.v3+json" \
15
+ https://api.github.com/repos/${{ github.repository }}/pages/builds
0 commit comments