We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0217c74 commit c3f7b77Copy full SHA for c3f7b77
.github/workflows/deploy-worker.yml
@@ -38,7 +38,7 @@ jobs:
38
ref: ${{ github.event.inputs.commit }}
39
40
- name: Check for pnpm-lock.yaml
41
- id: check_pnpm_lock
+ id: check-pnpm-lock
42
run: |
43
directory=${{ inputs.directory }}
44
file_path="${directory:+${directory}/}pnpm-lock.yaml"
@@ -48,13 +48,12 @@ jobs:
48
fi
49
50
- name: Setup Node.js
51
- if: ${{ steps.check_pnpm_lock.outputs.setup_pnpm == 'true' }}
52
uses: actions/setup-node@v4
53
with:
54
node-version: "20"
55
56
- name: Setup PNPM
57
+ if: ${{ steps.check-pnpm-lock.outputs.setup_pnpm == 'true' }}
58
uses: pnpm/action-setup@v4
59
60
- name: Pull go-toml Docker image
0 commit comments