This repository was archived by the owner on Dec 3, 2025. It is now read-only.
feat!: removes Blob polyfill in favour of native browser support. #20
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: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| name: "Release" | |
| runs-on: ubuntu-latest | |
| outputs: | |
| releases_created: ${{ steps.release-please.outputs.releases_created }} | |
| permissions: | |
| checks: write | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release-please | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| publish: | |
| name: "Publish" | |
| needs: [release] | |
| if: ${{ needs.release.outputs.releases_created == 'true' }} | |
| uses: linc-technologies/.github/.github/workflows/ember_publish.yml@main | |
| secrets: | |
| npm_token: ${{ secrets.NPM_TOKEN }} | |
| with: | |
| node_version: '18.20' | |
| public: true |