Skip to content

Commit 5bde601

Browse files
committed
fix: Fix release workflow (again)
1 parent 9f5d7ac commit 5bde601

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v4
2121
with:
22-
# Make sure the release step uses its own credentials:
23-
# https://github.com/cycjimmy/semantic-release-action#private-packages
24-
persist-credentials: false
2522
submodules: true
2623

2724
- name: Setup Java
@@ -58,14 +55,14 @@ jobs:
5855
run: |
5956
echo "${{ secrets.KEYSTORE }}" | base64 --decode > "keystore.jks"}
6057
61-
- name: Release
58+
- name: Semantic Release
59+
uses: cycjimmy/semantic-release-action@v4
60+
id: release
6261
env:
6362
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6463
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
6564
KEYSTORE_ENTRY_ALIAS: ${{ secrets.KEYSTORE_ENTRY_ALIAS }}
6665
KEYSTORE_ENTRY_PASSWORD: ${{ secrets.KEYSTORE_ENTRY_PASSWORD }}
67-
run: |
68-
npx semantic-release
6966

7067
- name: Attest
7168
if: steps.release.outputs.new_release_published == 'true'

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{
3333
"assets": [
3434
{
35-
"path": "downloaders/*/build/outputs/apk/release/play-store-downloader-*.apk?(.asc)",
35+
"path": "downloaders/*/build/outputs/apk/release/*.apk?(.asc)",
3636
}
3737
],
3838
successComment: false

0 commit comments

Comments
 (0)