Skip to content

Commit 0dcb132

Browse files
committed
Trying to fix the syntax issue
1 parent f649d03 commit 0dcb132

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy-to-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
run: mv build ../build-tmp
2727

2828
- name: Switch to the build branch and clean it
29-
- run: |
29+
run: |
3030
# Based off the script `./scripts/deploy_to_branch.sh`
3131
# The branch we are publishing to
3232
git fetch origin build
3333
git switch build
3434
rm -rf *
3535
3636
- name: Copy the built files over to the root directory and push to `build`
37-
- run: |
37+
run: |
3838
# Set up a dummy user and email for identification purposes
3939
cp -R ../build-tmp/* .
4040
rm -f ./js/*.LICENSE.txt

.github/workflows/deploy-to-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
run: mv build ../build-tmp
2727

2828
- name: Switch to the build branch and clean it
29-
- run: |
29+
run: |
3030
# Based off the script `./scripts/deploy_to_branch.sh`
3131
# The branch we are publishing to
3232
git fetch origin test
3333
git switch test
3434
rm -rf *
3535
3636
- name: Copy the built files over to the root directory and push to `test`
37-
- run: |
37+
run: |
3838
# Set up a dummy user and email for identification purposes
3939
cp -R ../build-tmp/* .
4040
rm -f ./js/*.LICENSE.txt

0 commit comments

Comments
 (0)