From 40aabaaab1755993ef2773ed55540f62abcd4c22 Mon Sep 17 00:00:00 2001 From: Tony Bentley Date: Sun, 31 Dec 2023 14:58:52 -0800 Subject: [PATCH] fix: release config in github action --- .github/workflows/actions.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 0808bc9..c616a60 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -30,14 +30,11 @@ jobs: run: npm run build && rm -rf public && mv build public && ls public -la - name: Semantic Release - uses: cycjimmy/semantic-release-action@v4 + run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - - + - name: publish run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - -