File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ runs:
22
22
path : " ./client"
23
23
# Log the versions for debugging
24
24
- run : |
25
- echo "Using Node.js version: ${{ vars .NODE_JS_VERSION }}"
26
- echo "Using pnpm version: ${{ vars .PNPM_VERSION }}"
25
+ echo "Using Node.js version: ${{ env .NODE_JS_VERSION }}"
26
+ echo "Using pnpm version: ${{ env .PNPM_VERSION }}"
27
27
shell: bash
28
28
- uses : actions/setup-node@v4
29
29
with :
30
- node-version : ${{ vars .NODE_JS_VERSION }}
30
+ node-version : ${{ env .NODE_JS_VERSION }}
31
31
# Setup pnpm
32
32
- uses : pnpm/action-setup@v4
33
33
with :
34
- version : ${{ vars .PNPM_VERSION }}
34
+ version : ${{ env .PNPM_VERSION }}
35
35
# Get the openapi.yaml file
36
36
- run : |
37
37
echo "Fetching OpenAPI file from: ${GITLAB_API}/${GITLAB_PROJECT}/repository/files/${OPENAPI_PATH}%2F${OPENAPI_FILE}/raw?ref=${CI_COMMIT_TAG}"
You can’t perform that action at this time.
0 commit comments