From 2a50aa468d7c74fc246b81613ab47d3fd75fdfe2 Mon Sep 17 00:00:00 2001 From: Roland Groza Date: Wed, 9 Oct 2024 22:12:58 +0300 Subject: [PATCH 1/2] fix: use node 14 for releasing and close #70 and #71 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b22e05..76c69f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "20.x" + node-version: "14.x" - run: npm ci - run: npx semantic-release env: From ccf22e85730fe0c13a710d97da23e469ef8a5a00 Mon Sep 17 00:00:00 2001 From: Roland Groza Date: Wed, 9 Oct 2024 22:25:40 +0300 Subject: [PATCH 2/2] fix: use specific semantic-release version --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76c69f6..cb111c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: with: node-version: "14.x" - run: npm ci - - run: npx semantic-release + - run: npx semantic-release@v19.0.5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}