Skip to content

Commit

Permalink
Add echos to publish workflow (#943)
Browse files Browse the repository at this point in the history
* refactor publish workflow into granular version checks

* fix next version variable refs

* lint

* publish bump echos
  • Loading branch information
goastler authored Jan 11, 2024
1 parent 6986230 commit e05c390
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,19 @@ jobs:
# only bump if any of the version checks have detected a bump
if [[ "${{ steps.check_version_github.outputs.bump }}" == 'true' ]]; then
echo "bump=true" >> $GITHUB_OUTPUT
echo "github bump required"
elif [[ "${{ steps.check_version_npm.outputs.bump }}" == 'true' ]]; then
echo "bump=true" >> $GITHUB_OUTPUT
echo "npm bump required"
elif [[ "${{ steps.check_version_docker_js_server.outputs.bump }}" == 'true' ]]; then
echo "bump=true" >> $GITHUB_OUTPUT
echo "docker js_server bump required"
elif [[ "${{ steps.check_version_docker_provider.outputs.bump }}" == 'true' ]]; then
echo "bump=true" >> $GITHUB_OUTPUT
echo "docker provider bump required"
else
echo "bump=false" >> $GITHUB_OUTPUT
echo "no bump required"
fi
# setup node
Expand Down

0 comments on commit e05c390

Please sign in to comment.