From 366414747886dee9f0403ef79a1bced40acd6034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tammerg=C3=A5rd?= Date: Sat, 17 Apr 2021 10:10:15 +0200 Subject: [PATCH] feat: install and build in ci before release --- .github/workflows/ci.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f07deb228..0ed07e8b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,12 +20,6 @@ jobs: - name: Make run: make - - name: Upload lib artifact - uses: actions/upload-artifact@v2 - with: - name: lib - path: lib - release: needs: make runs-on: ubuntu-latest @@ -37,12 +31,13 @@ jobs: uses: actions/setup-node@v2.1.4 with: node-version: 12 + + - name: Install dependencies + run: make install-deps - - name: Download lib arcitact - uses: actions/download-artifact@v2 - with: - name: lib - + - name: Build + run: make build + - name: Run semantic-release run: make semantic-release env: