We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ac642 commit 97b0e94Copy full SHA for 97b0e94
1 file changed
.github/workflows/release.yml
@@ -78,10 +78,13 @@ jobs:
78
rebar3-version: "3"
79
80
- name: Publish to Hex
81
- if: ${{ secrets.HEXPM_API_KEY != '' }}
82
env:
83
HEXPM_API_KEY: ${{ secrets.HEXPM_API_KEY }}
84
run: |
+ if [ -z "$HEXPM_API_KEY" ]; then
85
+ echo "HEXPM_API_KEY is not set; skipping Hex publish."
86
+ exit 0
87
+ fi
88
printf "I am not using semantic versioning\n" | gleam publish
89
90
- uses: actions/download-artifact@v4
0 commit comments