Skip to content

Commit 58b6feb

Browse files
authored
fix: temporarily rename QC_WASM_VERSION back to QE_WASM_VERSION (#5690)
`prisma/engines-wrapper` dispatches the version of the workflow file from the main branch with the code from the next branch. Since the workflow on the main branch still uses `QE_WASM_VERSION`, this breaks publishing the integration versions of `query-compiler-wasm`. /prisma-branch next
1 parent 2020848 commit 58b6feb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish-query-compiler-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Build @prisma/query-compiler-wasm
3939
run: make build-qc-wasm
4040
env:
41-
QC_WASM_VERSION: ${{ github.event.inputs.packageVersion }}
41+
QE_WASM_VERSION: ${{ github.event.inputs.packageVersion }}
4242

4343
- name: Install Node.js
4444
uses: actions/setup-node@v4

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CONFIG_FILE = .test_config
55
DEV_SCHEMA_FILE = dev_datamodel.prisma
66
PRISMA_BRANCH ?= main
77
ENGINE_SIZE_OUTPUT ?= /dev/stdout
8-
QC_WASM_VERSION ?= 0.0.0
8+
QE_WASM_VERSION ?= 0.0.0
99
SCHEMA_WASM_VERSION ?= 0.0.0
1010

1111
LIBRARY_EXT := $(shell \
@@ -60,7 +60,7 @@ build-se-wasm:
6060

6161
build-qc-wasm:
6262
cd query-compiler/query-compiler-wasm && \
63-
./build.sh $(QC_WASM_VERSION) query-compiler/query-compiler-wasm/pkg
63+
./build.sh $(QE_WASM_VERSION) query-compiler/query-compiler-wasm/pkg
6464

6565
build-qc-wasm-gz: build-qc-wasm
6666
@cd query-compiler/query-compiler-wasm/pkg && \

0 commit comments

Comments
 (0)