Skip to content

Commit

Permalink
prerelease CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Palatis committed May 26, 2023
1 parent 7d47fba commit cf37596
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
run: |
for FILE in archive/app/*unsigned-signed.apk
do
echo "${FILE} -> ${FILE/unsigned-signed/signed}"
mv "${FILE}" "${FILE/unsigned-signed/signed}"
done
- name: Upload
Expand All @@ -46,3 +45,12 @@ jobs:
path: |
archive/app/*-signed.apk
archive/app/*-mapping.txt
- name: Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: "latest"
prerelease: true
files: |
archive/app/*-signed.apk
archive/app/*-mapping.txt

0 comments on commit cf37596

Please sign in to comment.