Skip to content

Commit

Permalink
build: fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Nov 11, 2024
1 parent 58c36de commit 04d03bc
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
tags:
- "v*.*.*"

# additional permissions for provided GitHub token to create new release
permissions:
contents: write

jobs:
build-release-win-bundle:
runs-on: windows-latest
Expand All @@ -14,13 +18,13 @@ jobs:
- name: Set up JDK
uses: oracle-actions/setup-java@v1
with:
release: 21
release: 23

- name: Set jadx version
uses: actions/github-script@v7
with:
script: |
const jadxVersion = github.event.release.tag_name
const jadxVersion = context.ref.split('/').pop()
core.exportVariable('JADX_VERSION', jadxVersion);
- name: Setup Gradle
Expand All @@ -35,9 +39,10 @@ jobs:
name: ${{ format('jadx-gui-{0}-with-jre-win', env.JADX_VERSION) }}
path: ${{ format('build/distWinWithJre/jadx-gui-{0}-with-jre-win.zip', env.JADX_VERSION) }}
if-no-files-found: error
retention-days: 14
retention-days: 1

release:
needs: build-release-win-bundle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -52,7 +57,7 @@ jobs:
uses: actions/github-script@v7
with:
script: |
const jadxVersion = github.event.release.tag_name
const jadxVersion = context.ref.split('/').pop()
const releaseName = jadxVersion.substring(1)
core.exportVariable('JADX_VERSION', jadxVersion);
Expand All @@ -66,18 +71,26 @@ jobs:
env:
JADX_BUILD_JAVA_VERSION: 11

# download Windows JRE bundle
- uses: actions/download-artifact@v4
- name: Download Windows JRE bundle
uses: actions/download-artifact@v4
with:
name: ${{ format('jadx-gui-{0}-with-jre-win', env.JADX_VERSION) }}
path: ${{ format('build/jadx-gui-{0}-with-jre-win.zip', env.JADX_VERSION) }}

- run: |
cd build
pwd
mv jadx-gui-${JADX_VERSION}-with-jre-win.zip tmp.zip
unzip -l tmp.zip
unzip tmp.zip
rm -f tmp.zip
mv distWin/jadx-gui-*-win.zip .
ls -l *.zip
- name: Release
uses: softprops/action-gh-release@v2
with:
name: ${{ env.JADX_RELEASE_NAME) }}
name: ${{ env.JADX_RELEASE_NAME }}
draft: true
files: |
${{ format('build/jadx-{0}.zip', env.JADX_VERSION) }}
${{ format('build/distWin/jadx-gui-{0}-win.zip', env.JADX_VERSION) }}
${{ format('build/jadx-gui-{0}-with-jre-win.zip', env.JADX_VERSION) }}
fail_on_unmatched_files: true
files: build/*.zip

0 comments on commit 04d03bc

Please sign in to comment.