Skip to content

Commit 92a65c6

Browse files
committed
Adjustments
1 parent cc13b15 commit 92a65c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/commit-built-file-changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Check for artifact
8686
id: artifact-check
8787
run: |
88-
if [ -f "${{ github.workspace }}/pr-data.zip" ]; then
88+
if [ -f "pr-data.zip" ]; then
8989
echo "exists=false" >> "$GITHUB_OUTPUT"
9090
else
9191
echo "exists=true" >> "$GITHUB_OUTPUT"
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Unzip the artifact containing the PR data
9898
if: ${{ steps.artifact-check.outputs.exists == 'true' }}
99-
run: unzip ${{ github.workspace }}/pr-data.zip
99+
run: unzip pr-data.zip
100100

101101
- name: Generate Installation Token
102102
id: generate_token

0 commit comments

Comments
 (0)