npm - release @prisma/query-compiler-wasm@6.13.0-7.e25e9a0d14a343c8d1495c0d2444a1bd271e8176 from e25e9a0d14a343c8d1495c0d2444a1bd271e8176 on latest #335
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: Build and publish @prisma/query-compiler-wasm | |
| run-name: npm - release @prisma/query-compiler-wasm@${{ github.event.inputs.packageVersion }} from ${{ github.event.inputs.enginesHash }} on ${{ github.event.inputs.npmDistTag }} | |
| concurrency: publish-query-compiler-wasm | |
| on: | |
| # usually triggered via GH Actions Workflow in prisma/engines-wrapper repo | |
| workflow_dispatch: | |
| inputs: | |
| packageVersion: | |
| required: true | |
| description: 'New @prisma/query-compiler-wasm package version' | |
| enginesHash: | |
| required: true | |
| description: 'query-compiler commit to build' | |
| npmDistTag: | |
| required: true | |
| default: 'latest' | |
| description: 'npm dist-tag (e.g. latest or integration)' | |
| jobs: | |
| build: | |
| name: Build and publish @prisma/query-compiler-wasm | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Print input | |
| run: echo "${{ toJson(github.event.inputs) }}" | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.inputs.enginesHash }} | |
| - uses: ./.github/workflows/include/rust-wasm-setup | |
| - name: Build @prisma/query-compiler-wasm | |
| run: make build-qc-wasm | |
| env: | |
| QE_WASM_VERSION: ${{ github.event.inputs.packageVersion }} | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Set up NPM token for publishing | |
| run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
| - name: Publish @prisma/query-compiler-wasm | |
| run: npm publish --access public --tag ${{ github.event.inputs.npmDistTag }} | |
| working-directory: query-compiler/query-compiler-wasm/pkg |