From 0b81ec24fdde626212999b76117330546bcb057d Mon Sep 17 00:00:00 2001 From: AlexTheMagnus Date: Sun, 11 Sep 2022 20:39:32 +0200 Subject: [PATCH] fix: run semantic release without action --- .github/workflows/semantic-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 1763abf..ca5575f 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -9,8 +9,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install + run: npm ci + - name: Semantic Release - uses: cycjimmy/semantic-release-action@v3 + run: npm run semantic-release env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}