Skip to content

Commit 6f35ec9

Browse files
committed
fix yml syntax
1 parent 73070a7 commit 6f35ec9

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

.github/workflows/surge.yml

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@ on: [push]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
8-
name: Deploying to surge
7+
runs-on: ubuntu-latest
8+
name: Deploying to surge
99
steps:
10-
- uses: actions/checkout@v2
11-
- name: Install Node.js
12-
uses: actions/setup-node@v2-beta
13-
with:
14-
node-version: 12
15-
- uses: borales/actions-yarn@v2.0.0 # `yarn install`
16-
with:
17-
cmd: install
18-
# - name: Build module
19-
# run: yarn build
20-
- name: Build Storybook
21-
run: yarn build-storybook
22-
- name: Install Surge
23-
run:npm install --global surge
24-
- name: Surge deploy
25-
run: surge ./storybook-static react-scroll-parallax-v3.surge.sh --token ${{ secrets.SURGE_TOKEN }}
10+
- uses: actions/checkout@v2
11+
12+
- name: Install Node.js
13+
uses: actions/setup-node@v2-beta
14+
with:
15+
node-version: 12
16+
17+
- uses: borales/actions-yarn@v2.0.0 # `yarn install`
18+
with:
19+
cmd: install
20+
# - name: Build module
21+
# run: yarn build
22+
23+
- name: Build Storybook
24+
run: yarn build-storybook
25+
26+
- name: Install Surge
27+
run: npm install --global surge
28+
29+
- name: Surge deploy
30+
run: surge ./storybook-static react-scroll-parallax-v3.surge.sh --token ${{ secrets.SURGE_TOKEN }}

0 commit comments

Comments
 (0)