Godot template repository for my programs
add a option for gh pages deployment
| -rw-r--r-- | .github/workflows/export.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index cce0726..bd55d79 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -17,12 +17,13 @@ jobs: # the things to do export: # a thing to do uses: bend-n/godot-actions/.github/workflows/callable-export.yml@main with: # variables - export-name: ${{ github.event.repository.name }} # the name of the zipfile godot-version: 3.5 # the godot version image: ghcr.io/bend-n/godot-2d:3.5 # the container to use + export-name: ${{ github.event.repository.name }} # the name of the exec. ($export-name.exe) platforms: "windows linux web android mac" # space seperated list of platforms to build project-root-path: "." # the directory that project.godot is in + github-pages: "true" # to deploy to github pages or not (anything besides 'true' == false) secrets: # secrets - android-keystore-base64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} # not required - android-keystore-password: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} # not required - butler-api-key: ${{ secrets.BUTLER_CREDENTIALS }} # required for itch.io + android-keystore-base64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} # for signing the apk, not required + android-keystore-password: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} # ditto + butler-api-key: ${{ secrets.BUTLER_CREDENTIALS }} # required for itch.io deployment |