Skip to content

Commit e1a8840

Browse files
authored
ci: use test signing slug for nightly builds (#1975)
Since I don't want to approve it for every single build each day.
1 parent 51a1a30 commit e1a8840

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build_releases.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,11 @@ jobs:
214214
shell: bash
215215
run: |
216216
mkdir -p signed
217-
echo "slug=release-signing" >> $GITHUB_OUTPUT
217+
if [[ ${{ inputs.caller }} == "nightly" ]]; then
218+
echo "slug=test-signing" >> $GITHUB_OUTPUT
219+
else
220+
echo "slug=release-signing" >> $GITHUB_OUTPUT
221+
fi
218222
219223
- name: Upload unsigned Windows artifact
220224
id: upload-unsigned-artifact

0 commit comments

Comments
 (0)