We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 39df9db + 9d3b335 commit 5fe4fbaCopy full SHA for 5fe4fba
1 file changed
.github/workflows/custopize.yml
@@ -136,7 +136,7 @@ jobs:
136
run: |
137
mkdir build
138
cd build
139
- wget ${{ env.OCTOPI_URL }} -O octopi.zip
+ curl -L -o octopi.zip ${{ env.OCTOPI_URL }}
140
141
unzip octopi.zip
142
rm octopi.zip
@@ -216,7 +216,7 @@ jobs:
216
name: "${{ env.RELEASE_NAME }}"
217
tag_name: "${{ env.RELEASE_TAG }}"
218
body_path: "build/release.md"
219
- prerelease: ${{ contains(env.OCTOPRINT_VERSION, 'rc') }}
+ prerelease: ${{ github.ref != 'refs/heads/main' || contains(env.OCTOPRINT_VERSION, 'rc') || contains(env.OCTOPI_VERSION, 'rc') }}
220
fail_on_unmatched_files: true
221
files: |
222
build/${{ env.IMAGE_ZIP }}
0 commit comments