From 71006bf7b64a665658ccd394a1af06d7475c6db8 Mon Sep 17 00:00:00 2001 From: skookumchoocher Date: Wed, 10 Nov 2021 19:36:54 -0800 Subject: [PATCH] update cd --- .github/workflows/cd.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index eb7af44..71b45f2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -10,6 +10,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Clone + uses: actions/checkout@v2 + + - name: Set-up + uses: denoland/setup-deno@v1.0.0 + - name: Version id: get_tag_version run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//} @@ -29,16 +35,10 @@ jobs: run: | cd npm npm publish - - coverage: - runs-on: ubuntu-latest - - steps: - - name: Clone - uses: actions/checkout@v2 - - - name: Set-up - uses: denoland/setup-deno@v1.0.0 + + - name: Remove Build + shell: bash + run: rm -rf npm - name: Test run: deno test --unstable --coverage=cov @@ -58,3 +58,4 @@ jobs: run: | rm -rf cov rm cov.lcov +