Skip to content

Commit e6b6b35

Browse files
committed
chore: download secrets in android workflow
This commit adds a step to the Android GitHub Actions workflow to download secrets. The `actions/download-artifact@v4` action is used to retrieve an artifact named "secrets".
1 parent 8f5afb1 commit e6b6b35

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/android.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,11 @@ jobs:
218218
bundle config set path 'vendor/bundle'
219219
bundle install
220220
221+
- name: Download Secrets
222+
uses: actions/download-artifact@v4
223+
with:
224+
name: secrets
225+
221226
- name: Download built AAB
222227
uses: actions/download-artifact@v4
223228
with:

0 commit comments

Comments
 (0)