We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19488b6 commit 6ff1debCopy full SHA for 6ff1deb
.github/workflows/webapp.yml
@@ -1,4 +1,6 @@
1
name: Deploy-Webapp
2
+permissions:
3
+ contents: write
4
5
on:
6
push:
@@ -21,10 +23,7 @@ jobs:
21
23
# Build your program with the given configuration
22
24
run: cmake --build ${{github.workspace}}/build --target aoc-2024-web -j8
25
- - name: Deploy webapp to Github pages
- uses: JamesIves/github-pages-deploy-action@v4.4.1
26
+ - name: Deploy 🚀
27
+ uses: JamesIves/github-pages-deploy-action@v4
28
with:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- BRANCH: gh-pages
29
- FOLDER: build/bin/aoc-2024-www
30
-
+ folder: build/bin/aoc-2024-www # The folder the action should deploy.
0 commit comments