We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079f64a commit cc5a6b4Copy full SHA for cc5a6b4
1 file changed
.github/workflows/docs-deploy.yml
@@ -20,7 +20,7 @@ jobs:
20
name: Detect manual run
21
run: |
22
echo "Detected manual run."
23
- echo "deploy=true" > deploy.txt
+ echo "deploy=true" > /home/runner/deploy.txt
24
25
- if: github.event_name == 'push'
26
name: Checkout repository
@@ -46,13 +46,12 @@ jobs:
46
fi
47
48
echo "Commit $GITHUB_SHA is from a merged PR."
49
50
51
- name: Output deploy value
52
id: collect
53
54
- ls -la
55
- source deploy.txt
+ source /home/runner/deploy.txt
56
echo "$deploy" >> "$GITHUB_OUTPUT"
57
echo "Got deploy=$deploy"
58
0 commit comments