We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbecda1 commit 68c38f7Copy full SHA for 68c38f7
1 file changed
.github/workflows/update-dist.yml
@@ -14,8 +14,10 @@
14
15
name: Update dist
16
on:
17
- pull_request:
18
- types: [ closed ]
+ push:
+ branches: [ main ]
19
+ workflow_dispatch:
20
+
21
jobs:
22
update-dist:
23
# will only run if the PR was merged
@@ -33,6 +35,6 @@ jobs:
33
35
npm run build
34
36
git config --global user.name 'googlemaps-bot'
37
git config --global user.email 'googlemaps-bot@google.com'
- git add dist
38
+ git add -f dist
39
git commit -m "chore: update dist folder [skip ci]" || true
40
git push origin
0 commit comments