feat(square): send image / video / audio to a SquareChat (OpenChat) (… #151
Workflow file for this run
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: release | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| jsr: | |
| name: publish-to-jsr | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: v2.x | |
| - name: Publish linejs-types to JSR | |
| run: | | |
| cd packages/types | |
| deno run -A jsr:@david/publish-on-tag@0.1.3 | |
| - name: Publish linejs to JSR | |
| run: | | |
| cd packages/linejs | |
| deno run -A jsr:@david/publish-on-tag@0.1.3 | |
| - name: Publish linejs-agent to JSR | |
| # First publish needs the package created at | |
| # https://jsr.io/new?scope=evex&package=linejs-agent&from=cli | |
| # with OIDC trust to this repo. Until that's done this step is | |
| # expected to fail; don't fail the release for it. | |
| continue-on-error: true | |
| run: | | |
| cd packages/agent | |
| deno run -A jsr:@david/publish-on-tag@0.1.3 |