Skip to content

Commit

Permalink
895 fix bump version workflow not compiling typechain properly (#896)
Browse files Browse the repository at this point in the history
* add build typechain step

* lint
  • Loading branch information
goastler authored Dec 8, 2023
1 parent 7046345 commit 3d76226
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
run: npm ci

- name: Build
run: npm run build -w @prosopo/scripts
run: |
npm run build -w @prosopo/scripts
npm run build -w @prosopo/protocol-dev
- name: Bump version
env:
Expand All @@ -66,6 +68,9 @@ jobs:
# make the version changes
npm run version ${{ github.event.inputs.version }}
# rebuild typechain
npm run build:typechain
# set the author in git
git config user.name "prosoponator[bot]"
git config user.email "dev@prosopo.io"
Expand Down

0 comments on commit 3d76226

Please sign in to comment.