Merge pull request #105 from cloudquery/fix/zero-max-min-length #11
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
# | |
# Automatically tag a merge with master, or build a new image from the tag. | |
# | |
name: Release | |
on: | |
push: | |
branches: | |
- release | |
#paths-ignore: | |
# - "docs/**" | |
jobs: | |
tag-build-publish: | |
name: Tag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: "0" # make sure we get all commits! | |
- name: Bump version and push tag | |
id: bump | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RELEASE_BRANCHES: release | |
WITH_V: true |