From ccf7c575596167c5fee00d4c67d8a6bc8d091ee4 Mon Sep 17 00:00:00 2001 From: Valentin Beggi <87306219+valentinbeggi@users.noreply.github.com> Date: Mon, 11 Jul 2022 09:22:02 +0200 Subject: [PATCH] :package: add missing package step in release npm action (#63) --- .github/workflows/realease-to-npm.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/realease-to-npm.yml b/.github/workflows/realease-to-npm.yml index 37b2164..678ecc1 100644 --- a/.github/workflows/realease-to-npm.yml +++ b/.github/workflows/realease-to-npm.yml @@ -14,6 +14,8 @@ jobs: token: ${{ secrets.PAT_TOKEN }} - name: Install & cache node dependencies uses: ./.github/actions/install-node-deps + - name: Build packages + uses: yarn package - name: Configure Git User run: | git config --global user.email "ci@octokit.com"