We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531aa3a commit 48d7980Copy full SHA for 48d7980
.github/workflows/tutorials.yml
@@ -18,7 +18,7 @@ jobs:
18
steps:
19
- name: Start time
20
id: start
21
- run: echo "::set-output name=start_time::$(date +'%Y-%m-%dT%H:%M:%S%z')"
+ run: echo start_time=$(date +'%Y-%m-%dT%H:%M:%S%z') >> $GITHUB_OUTPUT
22
- name: Trigger Nipype tutorial Github Action
23
run: |
24
set -x
@@ -38,7 +38,7 @@ jobs:
38
39
# fail if not extracted
40
[[ -n $RUN_ID ]] || exit 1
41
- echo "::set-output name=run_id::$RUN_ID"
+ echo run_id=$RUN_ID >> $GITHUB_OUTPUT
42
- name: Check if action completed
43
timeout-minutes: 120
44
0 commit comments