Deploy to GitHub Pages from GitHub Actions
This commit is contained in:
committed by
OverloadedOrama
parent
6771866927
commit
85588c2146
10
.github/workflows/godot-ci.yml
vendored
10
.github/workflows/godot-ci.yml
vendored
@@ -74,6 +74,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: web
|
name: web
|
||||||
path: build/web
|
path: build/web
|
||||||
|
# Installing rsync is needed in order to deploy to GitHub Pages. Without it, the build will fail.
|
||||||
|
- name: Install rsync 📚
|
||||||
|
run: |
|
||||||
|
apt-get update && apt-get install -y rsync
|
||||||
|
- name: Deploy to GitHub Pages 🚀
|
||||||
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH: gh-pages # The branch the action should deploy to.
|
||||||
|
FOLDER: build/web # The folder the action should deploy.
|
||||||
|
|
||||||
export-mac:
|
export-mac:
|
||||||
name: Mac Export
|
name: Mac Export
|
||||||
|
|||||||
Reference in New Issue
Block a user