We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe583ee commit 0433485Copy full SHA for 0433485
.github/workflows/distribute-toolchain.yml
@@ -72,8 +72,14 @@ jobs:
72
fi
73
done
74
75
- - run: ./tools/gh-distribute-toolchain --scheme ${{ inputs.scheme }} --verbose --skip-history ${{ inputs.run-id }}
76
- working-directory: ./swiftwasm-build
+ - uses: nick-fields/retry@v3
+ with:
77
+ timeout_minutes: 180
78
+ max_attempts: 3
79
+ retry_on: error
80
+ command: |
81
+ cd swiftwasm-build
82
+ ./tools/gh-distribute-toolchain --scheme ${{ inputs.scheme }} --verbose --skip-history ${{ inputs.run-id }}
83
env:
84
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85
BUILDBOT_GITHUB_TOKEN: ${{ secrets.SWIFTWASM_BUILDBOT_TOKEN }}
0 commit comments