Skip to content

Commit e9542c6

Browse files
authored
fix: CI flows (#2598)
1 parent 0992e63 commit e9542c6

File tree

4 files changed

+8378
-4
lines changed

4 files changed

+8378
-4
lines changed

.github/workflows/build_pull_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ jobs:
2828
uses: actions/upload-artifact@v4
2929
with:
3030
name: revanced-manager
31-
path: app/build/outputs/apk/release/revanced-manager*.apk?(.asc)
31+
path: |
32+
app/build/outputs/apk/release/revanced-manager*.apk
33+
app/build/outputs/apk/release/revanced-manager*.apk.asc

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ jobs:
4444
- name: Install dependencies
4545
run: npm ci
4646

47+
- name: Import GPG key
48+
uses: crazy-max/ghaction-import-gpg@v6
49+
with:
50+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
51+
passphrase: ${{ secrets.GPG_PASSPHRASE }}
52+
fingerprint: ${{ vars.GPG_FINGERPRINT }}
53+
4754
- name: Setup keystore
4855
run: |
4956
echo "${{ secrets.KEYSTORE }}" | base64 --decode > "app/keystore.jks"
@@ -62,4 +69,4 @@ jobs:
6269
uses: actions/attest-build-provenance@v2
6370
with:
6471
subject-name: 'ReVanced Manager ${{ steps.release.outputs.new_release_git_tag }}'
65-
subject-path: build/app/outputs/apk/release/revanced-manager-*.apk
72+
subject-path: app/build/outputs/apk/release/revanced-manager*.apk

0 commit comments

Comments
 (0)