From d4f7a73d8c76ae6e3724628ac88ed2b0049e3d8f Mon Sep 17 00:00:00 2001 From: Alex Vernacchia Date: Wed, 13 Mar 2024 14:05:50 +0000 Subject: [PATCH] enable corepack --- .github/workflows/build-and-publish.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index bcbfea4..439e78a 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -11,10 +11,13 @@ jobs: uses: actions/checkout@v3 with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Enable corepack + run: | + corepack enable - uses: actions/setup-node@v3 with: node-version: 16 - cache: 'yarn' + cache: "yarn" - name: Install Dependencies run: yarn install - name: Build Pages @@ -35,4 +38,4 @@ jobs: steps: - name: Publish generated content to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 \ No newline at end of file + uses: actions/deploy-pages@v1