Skip to content

Commit

Permalink
Add a sleep on a release build on github actions to put it out of syn…
Browse files Browse the repository at this point in the history
…c with snapshot builds because python server it uploads to sucks and needs to be replaced (I really did not build it for this kind of usage, lol)
  • Loading branch information
OvermindDL1 committed Mar 19, 2024
1 parent 7cf7ce2 commit 65cb514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
MAVEN_USERNAME: ${{ secrets.MAVEN_UPLOAD_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_UPLOAD_PASSWORD }}
ONLY_RELEASES: true
run: if [[ "$REF" == "refs/tags/v"* ]]; then rm -rf ./build/libs; mkdir -p ./build/libs; ./gradlew testIfUploadable setupCIWorkspace build uploadArchives --stacktrace; fi
run: if [[ "$REF" == "refs/tags/v"* ]]; then sleep 600; rm -rf ./build/libs; mkdir -p ./build/libs; ./gradlew testIfUploadable setupCIWorkspace build uploadArchives --stacktrace; fi
#- name: Workflow Dispatch
#uses: benc-uk/workflow-dispatch@v1
#with:
Expand Down

0 comments on commit 65cb514

Please sign in to comment.