Skip to content

Commit ea46815

Browse files
committed
chore: fix vendor path
1 parent e3741b1 commit ea46815

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
id: build-plugin
114114
run: |
115115
cd ${{ github.workspace }}/plugin
116-
pnpm run build:txz --base-url="${{ inputs.BASE_URL }}" --api-version="${{ steps.vars.outputs.API_VERSION }}"
116+
pnpm run build:txz --tag="${{ inputs.TAG }}" --base-url="${{ inputs.BASE_URL }}" --api-version="${{ steps.vars.outputs.API_VERSION }}"
117117
pnpm run build:plugin --tag="${{ inputs.TAG }}" --base-url="${{ inputs.BASE_URL }}" --api-version="${{ steps.vars.outputs.API_VERSION }}"
118118
119119
- name: Ensure Plugin Files Exist

plugin/builder/build-txz.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const buildTxz = async (validatedEnv: TxzEnv) => {
168168
// Use the baseUrl and tag from validatedEnv, consistent with build-plugin.ts
169169
const vendorUrl = getAssetUrl({
170170
baseUrl: validatedEnv.baseUrl,
171-
tag: validatedEnv.tag
171+
tag: validatedEnv.tag
172172
}, vendorFilename);
173173

174174
console.log(`Storing vendor archive information: ${vendorUrl} -> ${vendorFilename}`);

0 commit comments

Comments
 (0)