From 27d887478033da0f0cabf6c4f99c0a9baefe90f1 Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Sat, 24 Dec 2022 21:06:52 +0900 Subject: [PATCH] fixed gh actions --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f493d81b..d9792184 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,11 +23,14 @@ jobs: - name: Install Dependencies run: yarn + - name: Build + run: yarn build + - name: Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1 with: - publish: 'yarn build && yarn changeset publish' + publish: yarn changeset publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}