Skip to content

Commit d6b840d

Browse files
author
tkostuch
committed
use develop branch for theme
1 parent 44ebe62 commit d6b840d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/deploy-storefrontcloud.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ jobs:
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v1
14-
- name: Add theme
14+
- name: Add theme master
15+
if: github.ref != 'refs/heads/develop'
1516
run: |
1617
git clone --single-branch --branch master https://github.com/DivanteLtd/vsf-default.git ./src/themes/default
18+
- name: Add theme develop
19+
if: github.ref == 'refs/heads/develop'
20+
run: |
21+
git clone --single-branch --branch develop https://github.com/DivanteLtd/vsf-default.git ./src/themes/default
1722
- name: Setup node
1823
uses: actions/setup-node@v1
1924
with:

0 commit comments

Comments
 (0)