Skip to content

Commit

Permalink
update: gha
Browse files Browse the repository at this point in the history
  • Loading branch information
ViscousPot committed Oct 9, 2024
1 parent ece6823 commit 8c753b8
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/generate-apk-aab-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,28 @@ jobs:
mention-new-contributors: false
include-compare: false
semver: false

- name: Find and Replace
uses: mad9000/actions-find-and-replace-string@5
id: signed_file_path_0
with:
source: ${{ steps.signed_files.outputs._0 }}
find: '/github/workspace/'
replace: ''

- name: Find and Replace
uses: mad9000/actions-find-and-replace-string@5
id: signed_file_path_2
with:
source: ${{ steps.signed_files.outputs._2 }}
find: '/github/workspace/'
replace: ''

- name: Create Release
id: create_release
uses: ncipollo/release-action@v1.13.0
with:
artifacts: "${{ steps.signed_files.outputs._0.replace('/github/workspace/', '') }}, ${{ steps.signed_files.outputs._2.replace('/github/workspace/', '') }}"
artifacts: "${{ signed_file_path_0.outputs.value }}, ${{ signed_file_path_2.outputs.value }}"
body: ${{ steps.changelog.outputs.changelog }}
name: Release ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 8c753b8

Please sign in to comment.