From 2b1a0d9f8ee605517775e4077198424aae53a0f3 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Date: Mon, 19 Jul 2021 20:21:23 +0200 Subject: [PATCH] fix: release process (#14) * support piper-version master * fix release workflow --- .github/workflows/npm-publish.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yaml b/.github/workflows/npm-publish.yaml index 0128b64..f081a80 100644 --- a/.github/workflows/npm-publish.yaml +++ b/.github/workflows/npm-publish.yaml @@ -9,6 +9,7 @@ on: jobs: build: + name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -20,6 +21,7 @@ jobs: - run: npm run lint publish-gpr: + name: Release needs: build runs-on: ubuntu-latest steps: @@ -30,7 +32,7 @@ jobs: cache: 'npm' registry-url: https://npm.pkg.github.com/ - run: npm ci - - run: npm build + - run: npm run build - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}