Skip to content

Commit

Permalink
fix: fix the build release workflow (#81)
Browse files Browse the repository at this point in the history
It looks like the TypeScript project wasn't and currently isn't being built before being published. This is resulting in the module not working.

This change runs the build step before publishing the module.

Fixes #80
  • Loading branch information
grant committed Dec 3, 2020
1 parent c768aa0 commit 03ac5be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.CLOUDEVENTS_NPM_TOKEN}}
run: |
npm install
npm run build
npm publish
- uses: actions/github-script@v3
if: ${{ steps.release.outputs.release_created }}
Expand Down

0 comments on commit 03ac5be

Please sign in to comment.