From f8a03918b368d331555a463f0fca6720356ec13a Mon Sep 17 00:00:00 2001 From: Adam Dossa Date: Tue, 27 Aug 2024 13:45:44 +0100 Subject: [PATCH] fix: enable corepack --- .github/workflows/semantic-release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 27299dbc..7ebd2563 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -14,7 +14,9 @@ jobs: with: node-version: 18.14 - name: Install dependencies - run: yarn + run: | + corepack enable + yarn - name: Semantic release env: GH_TOKEN: ${{ secrets.GH_TOKEN }}