There was an error while loading. Please reload this page.
1 parent 2fe8889 commit 2d7b631Copy full SHA for 2d7b631
1 file changed
.github/workflows/release-publish.yml
@@ -99,8 +99,17 @@ jobs:
99
echo "- Trigger: $EVENT"
100
} >> $GITHUB_STEP_SUMMARY
101
102
- - name: Setup Environment
103
- uses: ./.github/actions/setup
+ - name: Setup Node.js
+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
104
+ with:
105
+ node-version-file: ".nvmrc"
106
+ package-manager-cache: false # Prevent cache poisoning issues
107
+
108
+ - name: Enable corepack
109
+ run: corepack enable
110
111
+ - name: Install dependencies
112
+ run: yarn install --immutable
113
114
- name: Build package
115
run: yarn build --filter=@openzeppelin/${{ steps.pkg.outputs.name }}
0 commit comments