Skip to content

Commit

Permalink
Merge pull request #198 from anothrNick/hotfix_tagging_branch
Browse files Browse the repository at this point in the history
Hotfix: checkout master for this project tag bumps
  • Loading branch information
sbe-arg committed Oct 4, 2022
2 parents 5e3ca72 + 51bceaa commit de8337c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -13,13 +13,14 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: master
fetch-depth: '0'

- name: version-tag
id: tag
uses: anothrNick/github-tag-action@master # if we use 1 there is a too-be-fixed bug https://github.com/anothrNick/github-tag-action/actions/runs/3139501775/jobs/5099976842#step:1:35 alternatvelly we can use v1
env:
VERBOSE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: automatic-draft-release
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Expand Up @@ -13,7 +13,7 @@ initial_version=${INITIAL_VERSION:-0.0.0}
tag_context=${TAG_CONTEXT:-repo}
prerelease=${PRERELEASE:-false}
suffix=${PRERELEASE_SUFFIX:-beta}
verbose=${VERBOSE:-true}
verbose=${VERBOSE:-false}
major_string_token=${MAJOR_STRING_TOKEN:-#major}
minor_string_token=${MINOR_STRING_TOKEN:-#minor}
patch_string_token=${PATCH_STRING_TOKEN:-#patch}
Expand Down

0 comments on commit de8337c

Please sign in to comment.