Skip to content

Commit

Permalink
update release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Huber1 committed Nov 7, 2024
1 parent 5ac2d17 commit 1b7b94e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
outputs:
ref: ${{ steps.push-tag.outputs.commit_long_sha }}
build_number: ${{ env.BUILD_NUMBER }}
app_version: ${{ env.APP_VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -96,11 +97,12 @@ jobs:
build_number: ${{ needs.bump_version.outputs.build_number }}
ref: ${{ needs.bump_version.outputs.ref }}


prepare_release:
name: Prepare release
runs-on: ubuntu-latest
needs: build_mobile
needs:
- bump_version
- build_mobile
steps:
- name: Download Binaries
uses: actions/download-artifact@v4
Expand All @@ -111,8 +113,8 @@ jobs:
- name: Create release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.APP_VERSION }}
name: ${{ env.APP_VERSION }} ${{ inputs.title }}
tag_name: ${{ needs.bump_version.outputs.app_version }}
name: ${{ needs.bump_version.outputs.app_version }} ${{ inputs.title }}
body: ${{ inputs.description }}
generate_release_notes: true
make_latest: true
Expand Down

0 comments on commit 1b7b94e

Please sign in to comment.