Skip to content

Commit 4ab6b1c

Browse files
committed
fixes
1 parent 2f1ce4b commit 4ab6b1c

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,18 @@ jobs:
3737
uses: actions-js/push@master
3838
with:
3939
github_token: ${{ secrets.GITHUB_TOKEN }}
40-
branch: master
40+
branch: master
41+
42+
- name: Update Botasaurus Desktop Starter Dependencies
43+
run: |
44+
git clone https://${{ secrets.PAT }}@github.com/omkarcloud/botasaurus-desktop-starter.git desktop-starter
45+
cd desktop-starter
46+
npm i
47+
npm run update
48+
git config user.name "github-actions[bot]"
49+
git config user.email "github-actions[bot]@users.noreply.github.com"
50+
git add .
51+
git commit -m "Update Botasaurus Desktop Starter Dependencies"
52+
git push
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

Lines changed: 2 additions & 2 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:

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,18 @@ jobs:
3737
uses: actions-js/push@master
3838
with:
3939
github_token: ${{ secrets.GITHUB_TOKEN }}
40-
branch: master
40+
branch: master
41+
42+
- name: Update Botasaurus Desktop Starter Dependencies
43+
run: |
44+
git clone https://${{ secrets.PAT }}@github.com/omkarcloud/botasaurus-desktop-starter.git desktop-starter
45+
cd desktop-starter
46+
npm i
47+
npm run update
48+
git config user.name "github-actions[bot]"
49+
git config user.email "github-actions[bot]@users.noreply.github.com"
50+
git add .
51+
git commit -m "Update Botasaurus Desktop Starter Dependencies"
52+
git push
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)