File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -44,17 +44,34 @@ jobs:
4444 - name : Pack
4545 run : npm run pack
4646
47+ - name : Uploading build artifact...
48+ uses : actions/upload-artifact@v3
49+ with :
50+ name : build
51+ path : dist/*.js
52+
4753 commit_and_push :
4854
4955 runs-on : ubuntu-latest
5056 name : Commit and push build if needed
5157 needs : build
5258
5359 steps :
54- -
60+ - name : Checkouting code...
61+ uses : actions/checkout@v3
62+ with :
63+ ref : ${{ github.head_ref }}
64+
65+ - name : Downloading build artifact....
66+ uses : actions/download-artifact@v3
67+ with :
68+ name : build
69+ path : dist/
70+
71+ - name : Auto commiting changes...
5572 uses : stefanzweifel/git-auto-commit-action@v4
5673 with :
5774 commit_message : Automatically builded and updated
5875 file_pattern : dist/*.js
5976 skip_fetch : true
60- skip_checkout : true
77+ skip_checkout : true
You can’t perform that action at this time.
0 commit comments