Skip to content

Commit 7b18595

Browse files
committed
fix(ci): fix for release ci action
release ci action was not building prior to bundling
1 parent 101192a commit 7b18595

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
with:
16+
persist-credentials: false
1517
- uses: actions/setup-node@v3
1618
with:
1719
cache: npm
1820
node-version: 16
1921
- run: npm ci
22+
- run: npm run build
2023
- run: npx semantic-release
2124
env:
2225
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Shared/
66
src/
77
test/
88
coverage/
9+
dist/
910
*.config.js
1011
.nvmrc
1112
.eslint*

0 commit comments

Comments
 (0)