Skip to content

Commit

Permalink
Update version used in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
abarichello committed Oct 6, 2021
1 parent d7fda1c commit 03bccd2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: "godot-ci export"
on: push

env:
GODOT_VERSION: 3.2.3
GODOT_VERSION: 3.3.4
EXPORT_NAME: test-project

jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:3.2.3
image: barichello/godot-ci:3.3.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -35,7 +35,7 @@ jobs:
name: Linux Export
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:3.2.3
image: barichello/godot-ci:3.3.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -60,7 +60,7 @@ jobs:
name: Web Export
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:3.2.3
image: barichello/godot-ci:3.3.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
name: Mac Export
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:3.2.3
image: barichello/godot-ci:3.3.4
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
14 changes: 7 additions & 7 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: barichello/godot-ci:3.2.3
image: barichello/godot-ci:3.3.4

# NOTE: the `cd` command in each build stage is not necessary if your
# project.godot is at the repo root
Expand Down Expand Up @@ -60,7 +60,7 @@ web:
paths:
- build/web

# Android Debug Job. It will use the generated debug.keystore.
# Android Debug Job. It will use the generated debug.keystore.
android_debug:
stage: export
script:
Expand All @@ -72,10 +72,10 @@ android_debug:
paths:
- build/android

# Android Release Job. You will need to include keystore and password in the GitLab variable settings:
# 1. Take your generated keystore and convert it to Base64:
# Linux & macOS: `base64 release.keystore -w 0`
# Windows: `certutil -encodehex -f release.keystore encoded.txt 0x40000001`
# Android Release Job. You will need to include keystore and password in the GitLab variable settings:
# 1. Take your generated keystore and convert it to Base64:
# Linux & macOS: `base64 release.keystore -w 0`
# Windows: `certutil -encodehex -f release.keystore encoded.txt 0x40000001`
# 2. Go to GitLab Project > Settings > CI/CD > Variables and copy the Base64-encoded keystore value in a new variable `SECRET_RELEASE_KEYSTORE_BASE64` as type variable.
# 3. Create a second variable SECRET_RELEASE_KEYSTORE_USER as type variable with the alias of your keystore as value.
# 4. Create a third variable SECRET_RELEASE_KEYSTORE_PASSWORD as type variable with the password of your keystore as value.
Expand All @@ -97,7 +97,7 @@ android:
name: $EXPORT_NAME-$CI_JOB_NAME
paths:
- build/android

# GitHub Pages Deploy
deploy-github-pages:
stage: deploy
Expand Down

0 comments on commit 03bccd2

Please sign in to comment.