diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b6d74c2..947333a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,19 +5,19 @@ on: - master jobs: -test-and-release: - name: release - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.18.4] - steps: - - name: Install yarn - run: npm install -g yarn - - name: Install dependencies - run: yarn - - name: Release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: yarn release + release: + name: release + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [12.18.4] + steps: + - name: Install yarn + run: npm install -g yarn + - name: Install dependencies + run: yarn + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: yarn release