Skip to content

Commit c6b95f2

Browse files
committed
chore: enable github pipeline to use fastlane
1 parent 4799a1e commit c6b95f2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
bundle config path vendor/bundle
2828
bundle install --jobs 4 --retry 3
2929
30+
- name: Prepare Build Keys
31+
env:
32+
ENCRYPTED_F10B5E0E5262_IV: ${{ secrets.ENCRYPTED_F10B5E0E5262_IV }}
33+
ENCRYPTED_F10B5E0E5262_KEY: ${{ secrets.ENCRYPTED_F10B5E0E5262_KEY }}
34+
run: |
35+
bash scripts/prep-key.sh
36+
3037
- name: Download Assets
3138
id: download-assets
3239
run: |
@@ -39,7 +46,7 @@ jobs:
3946
git config --global user.name "github-actions[bot]"
4047
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
4148
42-
git clone --branch=fastlane https://${{ github.repository_owner }}:${{ github.token }}@github.com/${{ github.repository }} fastlane
49+
git clone --branch=fastlane --depth=1 https://${{ github.repository_owner }}:${{ github.token }}@github.com/${{ github.repository }} fastlane
4350
cd fastlane
4451
4552
echo "${{ github.event.release.body }}" > metadata/android/en-US/changelogs/${{ steps.download-assets.outputs.VERSION_CODE }}.txt

0 commit comments

Comments
 (0)