From c01d2235a2e174f2665acb87e7c47817edf1a648 Mon Sep 17 00:00:00 2001 From: Fabian Kirschner Date: Mon, 11 Jul 2022 02:38:19 +0200 Subject: [PATCH] fix: release workflow missing pkg install --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c9d868f..83be33e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,8 @@ jobs: with: fetch-depth: 0 # semantic release needs all the history - uses: actions/setup-node@v2 + - run: sudo npm install --global conventional-changelog-conventionalcommits@5 semantic-release@19 - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx semantic-release@19 \ No newline at end of file + run: semantic-release \ No newline at end of file