Skip to content

Commit

Permalink
Download artifacts before creating the release so there is less waiti…
Browse files Browse the repository at this point in the history
…ng time before the assets can appear on a release
  • Loading branch information
kiwibrowser authored Aug 13, 2023
1 parent 0b5a422 commit 7cf0e86
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions .github/workflows/build_and_sign_release_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
default: 'no'
announceOnMessengers:
description: 'Announce new release on Discord and Telegram channel'
description: 'Announce new release on Discord and Telegram channels'
required: true
default: 'yes'

Expand Down Expand Up @@ -160,6 +160,27 @@ jobs:
echo 'user = storage' >> $HOME/.config/rclone/rclone.conf
echo 'key_pem = ${{ secrets.STORAGE_KEY }}' >> $HOME/.config/rclone/rclone.conf
- name: Downloading artifact (arm)
uses: actions/download-artifact@v1
with:
name: apk-arm

- name: Downloading artifact (arm64)
uses: actions/download-artifact@v1
with:
name: apk-arm64

- name: Downloading artifact (x86)
uses: actions/download-artifact@v1
with:
name: apk-x86

- name: Downloading artifact (x64)
uses: actions/download-artifact@v1
with:
name: apk-x64

- name: Read last commits
id: read_commits
run: |
Expand Down Expand Up @@ -229,26 +250,6 @@ jobs:
Essentially, if you downloaded Kiwi from an app store, you need to use the "-playstore.apk" files or uninstall the version of Kiwi you have and start using the "-github.apk" version.
- name: Downloading artifact (arm)
uses: actions/download-artifact@v1
with:
name: apk-arm

- name: Downloading artifact (arm64)
uses: actions/download-artifact@v1
with:
name: apk-arm64

- name: Downloading artifact (x86)
uses: actions/download-artifact@v1
with:
name: apk-x86

- name: Downloading artifact (x64)
uses: actions/download-artifact@v1
with:
name: apk-x64

- name: Signing and uploading release to GitHub and send to the Play Store
if: ${{ github.repository_owner == 'kiwibrowser' && contains(github.event.inputs.prepareRelease, 'yes') }}
run: |
Expand Down

0 comments on commit 7cf0e86

Please sign in to comment.