From caaf6abc5313b0a372dc2ca9c9bbe56387123a7a Mon Sep 17 00:00:00 2001 From: Simone Corsi Date: Sat, 16 Jan 2021 09:34:24 +0100 Subject: [PATCH] fix(ci): bad syntax --- .github/workflows/release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8f51c60..67b788d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,12 +11,13 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.GITHUB_TOKEN }} - + - uses: fregante/setup-git-user@v1 - name: build - run: npm ci - run: npm run release + run: | + npm ci + npm run release - name: Create github Release uses: actions/create-release@v1