Skip to content

Commit f70652a

Browse files
authored
Update dist-pr.yml (#209)
Updates the cleaning step to do a hard reset; adds log lines to see what's in dist.
1 parent 878dcb6 commit f70652a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/dist-pr.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,17 @@ jobs:
3434
git config --global user.name 'googlemaps-bot'
3535
git config --global user.email '[email protected]'
3636
37-
- name: Clean Workspace
37+
- name: Aggressively clean Workspace
3838
run: |
39+
git reset --hard
3940
git clean -fdx
41+
ls -la # List all files (including hidden ones)
42+
43+
- name: List contents of dist
44+
run: |
45+
git fetch origin dist
46+
git checkout origin/dist
47+
ls -la dist
4048
4149
- name: Create Branch for PR
4250
run: |

0 commit comments

Comments
 (0)