-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to fix export credentials for android
- Loading branch information
Showing
3 changed files
with
53 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,10 +77,13 @@ jobs: | |
gpg -d --passphrase "${{ secrets.ANDROID_KEYSTORE_PASS }}" --batch android.keystore.asc > android.keystore | ||
# ...above this line is the workflow job setup | ||
- name: use custom editor settings | ||
- name: use custom editor settings and export credentials | ||
run: | | ||
mkdir -p ~/.config/godot | ||
mkdir -p ~/.config/godot godot/.godot/ | ||
cp godot/editor_settings-3.tres ~/.config/godot/ | ||
cp godot/export_credentials.defaults ~/.config/godot/export_credentials.cfg | ||
# mkdir -p ~/.config/godot godot/.godot/ | ||
# cp godot/export_credentials.defaults godot/.godot/export_credentials.cfg | ||
- name: export godot | ||
# Use latest version (see releases for all versions) | ||
|
@@ -107,7 +110,7 @@ jobs: | |
use_godot_3: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: create release | ||
uses: ncipollo/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[preset.0] | ||
|
||
script_encryption_key="" | ||
|
||
[preset.0.options] | ||
|
||
codesign/identity_type=0 | ||
codesign/identity="" | ||
codesign/password="" | ||
|
||
[preset.1] | ||
|
||
script_encryption_key="" | ||
|
||
[preset.2] | ||
|
||
script_encryption_key="" | ||
|
||
[preset.3] | ||
|
||
script_encryption_key="" | ||
|
||
[preset.3.options] | ||
|
||
codesign/certificate_file="" | ||
codesign/certificate_password="" | ||
codesign/provisioning_profile="" | ||
notarization/apple_id_name="" | ||
notarization/apple_id_password="" | ||
notarization/api_uuid="" | ||
notarization/api_key="" | ||
notarization/api_key_id="" | ||
|
||
[preset.4] | ||
|
||
script_encryption_key="" | ||
|
||
[preset.4.options] | ||
|
||
keystore/debug="../android.keystore" | ||
keystore/debug_user="godot" | ||
keystore/debug_password="godotpass" | ||
keystore/release="../android.keystore" | ||
keystore/release_user="godot" | ||
keystore/release_password="godotpass" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters