feat: change BSONification to string rather than Uint8Array #21
This file contains 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
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
id-token: write | |
name: Release | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
release: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release | |
uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
release-type: node | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
publish: | |
needs: release | |
if: ${{ needs.release.outputs.release_created }} | |
uses: ./.github/workflows/publish.yml | |
secrets: inherit |