Skip to content

Commit

Permalink
fix: Added the actual build step
Browse files Browse the repository at this point in the history
The default semantic-release workflow doesn't build the package because it's written in JS.
This one is TS - so it needs to be built beforehand
  • Loading branch information
seebeen committed Aug 19, 2023
1 parent e608a00 commit 7a3cd39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
node-version: lts/*
- run: npm clean-install
- run: npm audit signatures
- name: Build
run: 'npm run build:production'
# pinned version updated automatically by Renovate.
# details at https://semantic-release.gitbook.io/semantic-release/usage/installation#global-installation
- run: npm run semantic-release
Expand Down
4 changes: 3 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ lib
.editorconfig
.eslintrc.cjs
.prettierrc
CODE_OF_CONDUCT.md
CODE_OF_CONDUCT.md
jest.config.json
LICENSE
README.md
Expand All @@ -13,4 +15,4 @@ test
.vscode
CHANGELOG.md
tsconfig.*
renovate.json
scrutinizer.yml

0 comments on commit 7a3cd39

Please sign in to comment.