We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56dfac0 commit 76c31c4Copy full SHA for 76c31c4
.github/workflows/release.yaml
@@ -83,16 +83,19 @@ jobs:
83
# git push
84
# git push --tags
85
echo "PACKAGE=true" >> $GITHUB_ENV
86
+ export PACKAGE=true
87
;;
88
dev)
89
bump-my-version bump --allow-dirty --verbose --no-commit --no-tag "$RELEASE_KIND"
90
91
92
93
*)
94
echo "PACKAGE=false" >> $GITHUB_ENV
95
+ export PACKAGE=false
96
esac
97
- echo "package=${{ env.PACKAGE }}" >> $GITHUB_OUTPUT
98
+ echo "package=$PACKAGE" >> $GITHUB_OUTPUT
99
100
- name: Package and upload artifacts
101
if: ${{ env.PACKAGE == 'true' }}
0 commit comments