From bf4936cb39217653d039239c5ecc42b4f2d45604 Mon Sep 17 00:00:00 2001 From: MirrorBytes Date: Fri, 25 Dec 2020 15:18:46 -0500 Subject: [PATCH] fix: github actions wasn't generating dist. fixes #113 --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca5fe30..1cabbcf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,10 +27,8 @@ jobs: uses: actions/setup-node@v2-beta with: node-version: ${{ matrix.node }} - - name: Install Deps - run: npm install - - name: Validate package - run: npm run validate + - name: Install deps & validate + run: npm run setup release: runs-on: ubuntu-latest @@ -47,8 +45,10 @@ jobs: uses: actions/setup-node@v2-beta with: node-version: 12.x - - name: Install Deps + - name: Install deps run: npm install + - name: Build proj + run: npm run build - name: Update tests, coverage, and release run: npm run test:update && npx codecov && npx semantic-release env: