fix: trim strings in data import fix: validation for choices field #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Replace $CLOUD_VERSION with deno.json version | |
| run: | | |
| sed -i "s/\$CLOUD_VERSION/$(jq -r '.version' deno.json)/" src/extension/core-extension.ts | |
| - name: Publish package | |
| run: npx jsr publish --allow-dirty |