Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
TWINE_PASSWORD: ${{ inputs.twine_password }}
TWINE_USERNAME: ${{ inputs.twine_username }}

# github runners already come with NPM and node
# js/ts: github runners already come with NPM and node
- name: Generate Typescript Protocol Classes
shell: bash
run: protocol-models/bin/generate-typescript-classes-docker.sh
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/pull-request-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,14 @@ jobs:

- name: Test npm publish
run: cd protocol-models/typescript && npm publish --dry-run

# schemastore
- name: Generate schemastore files
shell: bash
run: protocol-models/bin/generate-schemastore-docker.sh

- name: commit new schemastore files
run: |
git add jsonschema/*
git commit -m "update schemastore files"
git push
Loading