Tag #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Retrieve current version number before release | |
run: ./gradlew printVersion | |
- name: Create release tag | |
id: createRelease | |
run: | | |
./gradlew releaseVersion --no-commit | |
- name: Push new tag | |
run: | | |
git push origin --tags |