Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Serrat authored and Marc Serrat committed Oct 15, 2021
1 parent 5fb25de commit 7f7d966
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
echo "::set-env name=TRAVIS_BRANCH::${TRAVIS_BRANCH:-$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')}"
./commit_tag_push.sh
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
TRAVIS_REPO_SLUG: ${{ github.repository }}
TRAVIS_BRANCH: ${{ github.head_ref }}
CONNECT_GITHUB_TOKEN: ${{ secrets.CONNECT_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion commit_tag_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ git push origin $TRAVIS_BRANCH
CHECK_TAG=$(git tag -l "$GIT_TAG")
if [ "$CHECK_TAG" != "$GIT_TAG" ]; then
echo "Create tag $GIT_TAG"
git tag -a $GIT_TAG -m "Generated tag from TravisCI build"
git tag -a $GIT_TAG -m "Generated tag from build"
echo "Tag $GIT_TAG added"
git push origin $TRAVIS_BRANCH --tags
else
Expand Down

0 comments on commit 7f7d966

Please sign in to comment.