Skip to content

Commit

Permalink
Minor fix for release
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed May 23, 2024
1 parent ef6ae08 commit e5f132f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,11 @@ jobs:
echo "keyAlias=${{ secrets.KEYSTORE_KEY_ALIAS }}" >> $KEYSTORE_PROPERTIES_PATH
echo "storePassword=${{ secrets.KEYSTORE_PASSWORD }}" >> $KEYSTORE_PROPERTIES_PATH
echo "keyPassword=${{ secrets.KEYSTORE_KEY_PASSWORD }}" >> $KEYSTORE_PROPERTIES_PATH
- uses: olegtarasov/get-tag@v2 # that generate $GIT_TAG_NAME env
id: tagName
with:
tagRegex: 'internal-v([0-9]+.[0-9]+.[0-9]+\+[0-9]+)' # Optional. Returns specified group text as tag name. Full tag string is returned if regex is not defined.
tagRegexGroup: 1 # Optional. Default is 1.
- name: 🤖📦 Create Android release
run: |
./gradlew app:assembleRelease
- name: 🤖🚀 Upload to GitHub release
uses: AButler/[email protected]
with:
files: 'build/app/outputs/flutter-apk/*;build/app/outputs/bundle/release/*'
files: 'app/build/outputs/apk/release/*.apk'
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e5f132f

Please sign in to comment.