We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a7de9 commit 0de1a8bCopy full SHA for 0de1a8b
.github/workflows/build.yml
@@ -46,3 +46,12 @@ jobs:
46
name: action-dist
47
path: dist/
48
retention-days: 30
49
+
50
+ - name: Commit dist files (on release)
51
+ if: github.event_name == 'release'
52
+ run: |
53
+ git config --local user.email "action@github.com"
54
+ git config --local user.name "GitHub Action"
55
+ git add dist/
56
+ git diff --staged --quiet || git commit -m "Build: Update dist files for release ${{ github.event.release.tag_name }}"
57
+ git push
0 commit comments