Scripts: attempt to push to repo

This commit is contained in:
Pieter Vander Vennet 2025-06-17 00:51:34 +02:00
parent a756537c81
commit baf4ac0898

View file

@ -36,6 +36,16 @@ jobs:
git submodule init
git submodule update
- name: Update android repo
run: |
cd android
git config user.name "Android file update bot"
git config user.email "info@mapcomplete.org"
git add *
git commit -m "Add files for release ${{ github.ref_name }}"
git tag "${{ github.ref_name }}"
git push --tags
- name: generate layers
run: npm run generate:layeroverview
@ -45,14 +55,6 @@ jobs:
- name: prepare android build
run: npm run android:prepare
- name: Update android repo
run: |
cd android
git add *
git commit -m "Add files for release ${{ github.ref_name }}"
git tag "${{ github.ref_name }}"
git push --tags
- name: Decode keystore
run: |
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > ./android/app/release-key.jks