File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed
Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ name: Build and Deploy Botasaurus JS
33on :
44 push :
55 branches : [ master ]
6- paths :
7- - ' js/botasaurus-js/**'
6+ # paths:
7+ # - 'js/botasaurus-js/**'
88
99jobs :
1010 build-and-deploy :
3737 uses : actions-js/push@master
3838 with :
3939 github_token : ${{ secrets.GITHUB_TOKEN }}
40- branch : master
40+ branch : master
41+
42+
43+ - name : Clone Botasaurus Desktop Starter
44+ run : |
45+ git clone https://github.com/omkarcloud/botasaurus-desktop-starter desktop-starter
46+ cd desktop-starter
47+ npm i
48+ npm run update
49+ git config user.name "github-actions[bot]"
50+ git config user.email "github-actions[bot]@users.noreply.github.com"
51+ git add .
52+ git commit -m "Update Botasaurus Desktop Starter"
53+ git push
54+ env :
55+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments