Skip to content

Commit 53eecd0

Browse files
committed
a
1 parent b1564d7 commit 53eecd0

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

.github/workflows/deploy-botasaurus-js.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Build and Deploy Botasaurus JS
33
on:
44
push:
55
branches: [ master ]
6-
paths:
7-
- 'js/botasaurus-js/**'
6+
# paths:
7+
# - 'js/botasaurus-js/**'
88

99
jobs:
1010
build-and-deploy:
@@ -37,4 +37,19 @@ jobs:
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 }}

0 commit comments

Comments
 (0)