We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08b0f0 commit 1e8d0e5Copy full SHA for 1e8d0e5
.github/workflows/build.yml
@@ -196,6 +196,11 @@ jobs:
196
test -f ./remoteAudio && chmod +x ./remoteAudio #only on linux & darwin needed
197
zip -j remoteAudio-${{ env.VERSION_TAG }}-${{ matrix.OS }}-${{ matrix.ARCH }}.zip ./*
198
199
+ - name: Sleep to avoid multiple releases with the same tag
200
+ run: |
201
+ RANDOM_DELAY=$(( ( RANDOM % 60 ) + 1 ))
202
+ sleep $RANDOM_DELAY
203
+
204
# Finally upload the artifact to the corresponding release
205
- name: Create Release
206
id: create_release
0 commit comments