Skip to content

Commit

Permalink
Add auto release on tag creation
Browse files Browse the repository at this point in the history
  • Loading branch information
streambinder committed Aug 31, 2023
1 parent 09c5558 commit 63fa0a0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: tag

on:
push:
tags:
- 'v*.*.*'

permissions: write-all

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- uses: gradle/gradle-build-action@v2
with:
arguments: build --warning-mode all
- uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: ./app/build/outputs/apk/*.apk
draft: false
prerelease: false

0 comments on commit 63fa0a0

Please sign in to comment.