Skip to content

Commit

Permalink
fix(build): missing building before publishing (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanwinters authored Dec 3, 2021
1 parent 99f5886 commit 6af43f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ jobs:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Node
- name: Set up Node and Build for Deploy
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install
run: yarn install --immutable
- name: Build
run: yarn run build
- name: Install Semantic Release dependencies
run: |
sudo apt-get install bumpversion
Expand Down

0 comments on commit 6af43f7

Please sign in to comment.