We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0cf4d commit b94c795Copy full SHA for b94c795
1 file changed
.github/workflows/gametests.yml
@@ -57,7 +57,11 @@ jobs:
57
distribution: 'microsoft'
58
java-version: 21
59
- name: 'Fetch modpack'
60
- run: ./fetch.sh modpacks/${{ matrix.modpack }}/${{ matrix.mc }}/${{ matrix.loader }}/pom.xml $(pwd)/run/mods
+ uses: nick-fields/retry@v3 # Retry, as some maven repos can be finicky
61
+ with:
62
+ timeout_minutes: 5
63
+ max_attempts: 3
64
+ command: ./fetch.sh modpacks/${{ matrix.modpack }}/${{ matrix.mc }}/${{ matrix.loader }}/pom.xml $(pwd)/run/mods
65
env:
66
GITHUB_USER: ${{ github.actor }}
67
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments