We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af71e8b commit 980d71dCopy full SHA for 980d71d
1 file changed
.github/workflows/rust-build.yml
@@ -212,3 +212,15 @@ jobs:
212
path: artifacts/
213
if-no-files-found: error
214
retention-days: ${{ matrix.retention-days || 3 }}
215
+
216
+ tmate:
217
+ needs: [compile]
218
+ if: ${{ inputs.enable-tmate && needs.compile.result == "failure" }}
219
+ runs-on: ubuntu-latest
220
+ steps:
221
+ - name: Setup tmate session
222
+ uses: mxschmitt/action-tmate@v3
223
+ with:
224
+ detached: true
225
+ timeout-minutes: 15
226
+ limit-access-to-actor: true
0 commit comments