Skip to content

Commit 6af43f7

Browse files
authored
fix(build): missing building before publishing (#3)
1 parent 99f5886 commit 6af43f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@ jobs:
2626
- uses: actions/checkout@v2
2727
with:
2828
persist-credentials: false
29-
- name: Set up Node
29+
- name: Set up Node and Build for Deploy
3030
uses: actions/setup-node@v2
3131
with:
3232
node-version: 14
33+
- name: Install
34+
run: yarn install --immutable
35+
- name: Build
36+
run: yarn run build
3337
- name: Install Semantic Release dependencies
3438
run: |
3539
sudo apt-get install bumpversion

0 commit comments

Comments
 (0)