Skip to content

Tag

Tag #127

Workflow file for this run

name: Tag
on: workflow_dispatch
jobs:
tag-job:
runs-on: ubuntu-latest
steps:
- name: Checkout current code
uses: actions/checkout@v3
with:
token: ${{ secrets.BROADBOT_TOKEN }} # this allows the push to succeed later
- name: Bump the tag to a new version
# https://github.com/DataBiosphere/github-actions/tree/master/actions/bumper
uses: databiosphere/github-actions/actions/[email protected]
id: tag
env:
GITHUB_TOKEN: ${{ secrets.BROADBOT_TOKEN }}
DEFAULT_BUMP: minor
RELEASE_BRANCHES: dev
VERSION_FILE_PATH: build.gradle
VERSION_LINE_MATCH: "^\\s*version\\s*=\\s*'.*'"
VERSION_SUFFIX: SNAPSHOT