We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc04ad commit f0a5a1cCopy full SHA for f0a5a1c
.github/workflows/release.yml
@@ -22,9 +22,12 @@ jobs:
22
github_token: ${{ secrets.GITHUB_TOKEN }}
23
path: artifacts/
24
25
- - name: Rename
+ - name: Rename IPA
26
run: mv artifacts/ios-ipa/zero.ipa artifacts/zero-${{ github.ref_name }}.ipa
27
28
+ - name: Rename APK
29
+ run: mv artifacts/android-apk/zero.apk artifacts/zero-${{ github.ref_name }}.apk
30
+
31
- name: Backend
32
run: zip -r server-${{ github.ref_name }}.zip backend
33
@@ -33,6 +36,7 @@ jobs:
36
with:
34
37
files: |
35
38
artifacts/zero-${{ github.ref_name }}.ipa
39
+ artifacts/zero-${{ github.ref_name }}.apk
40
server-${{ github.ref_name }}.zip
41
name: Release ${{ github.ref_name }}
42
tag_name: ${{ github.ref_name }}
0 commit comments