Bump version and push tag #4
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: Bump version and push tag | |
on: | |
workflow_run: | |
workflows: ["Gradle Build OpenHouse"] | |
types: | |
- completed | |
branches: | |
- main | |
jobs: | |
build: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.merge_commit_sha }} | |
fetch-depth: '0' | |
- name: Bump version and push tag | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true # prefix for tag "v" | |
DEFAULT_BUMP: patch # major, minor, patch | |
DRY_RUN: true # if true, will not push tag | |
INITIAL_VERSION: 0.5.0 # if no tags, will use this version |