Skip to content

Commit

Permalink
fix env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
herr-bubu committed Mar 22, 2024
1 parent 3fe7387 commit e20a2e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ jobs:
- name: Set a new version
run: |
VERSION="$(semver "$(< package.json jq -r '.version')" -i)"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Create a new branch
run: |
BRANCH_NAME=bump-version-to-$VERSION
BRANCH_NAME="bump-version-to-$VERSION"
git checkout -b $BRANCH_NAME main2
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
- name: Bump version and commit changes
run: |
./unifyVersions.js $VERSION
Expand Down

0 comments on commit e20a2e0

Please sign in to comment.