Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

895 fix bump version workflow not compiling typechain properly #896

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading