From 2b7172dfe2bbc426264419326392f9c75b9f6860 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 27 Aug 2024 18:53:48 +0100 Subject: [PATCH] fix: do some stuff --- .github/workflows/release.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a69a8a..4073e5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,11 +11,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v2 - + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' - name: Release to GitHub uses: cycjimmy/semantic-release-action@v4 + with: + extra_plugins: | + @semantic-release/changelog@5.0.1 + @semantic-release/git + branches: | + ['main'] env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file