We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc13b15 commit 92a65c6Copy full SHA for 92a65c6
.github/workflows/commit-built-file-changes.yml
@@ -85,7 +85,7 @@ jobs:
85
- name: Check for artifact
86
id: artifact-check
87
run: |
88
- if [ -f "${{ github.workspace }}/pr-data.zip" ]; then
+ if [ -f "pr-data.zip" ]; then
89
echo "exists=false" >> "$GITHUB_OUTPUT"
90
else
91
echo "exists=true" >> "$GITHUB_OUTPUT"
@@ -96,7 +96,7 @@ jobs:
96
97
- name: Unzip the artifact containing the PR data
98
if: ${{ steps.artifact-check.outputs.exists == 'true' }}
99
- run: unzip ${{ github.workspace }}/pr-data.zip
+ run: unzip pr-data.zip
100
101
- name: Generate Installation Token
102
id: generate_token
0 commit comments