Skip to content

Commit

Permalink
Further troubleshooting action
Browse files Browse the repository at this point in the history
  • Loading branch information
dougollerenshaw committed Sep 19, 2024
1 parent 3b38085 commit 137e1dc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ jobs:
else
NEW_VERSION=$(cz bump --dry-run --yes --increment PATCH --list | grep new_version | sed -r s,"^.*=",,)
fi
echo "New version would be: $NEW_VERSION"
echo "::set-output name=new_version::$NEW_VERSION"
echo "new_version=$NEW_VERSION" >> $GITHUB_ENV
- name: Comment PR
uses: actions/github-script@v6
Expand All @@ -46,7 +45,7 @@ jobs:
issue_number: context.issue.number,
owner: 'dougollerenshaw',
repo: 'CodeAIde',
body: `When merged, this PR will bump the version to: ${{ steps.preview.outputs.new_version }}`
body: `When merged, this PR will bump the version to: ${process.env.new_version}`
})
bump-version:
Expand Down

0 comments on commit 137e1dc

Please sign in to comment.