diff options
author | Luiz Esmiralha <esmiralha@br.ibm.com> | 2022-11-29 15:15:10 -0300 |
---|---|---|
committer | Luiz Esmiralha <esmiralha@br.ibm.com> | 2022-11-29 15:15:10 -0300 |
commit | 63c0ca6558777c8a86312816e41035d63013eb8a (patch) | |
tree | d83a5837f0a8723320154978514cf96d2825ea8a | |
parent | d66cee23f995566b487345271a170549b241f81d (diff) | |
download | missing-63c0ca6558777c8a86312816e41035d63013eb8a.tar.gz missing-63c0ca6558777c8a86312816e41035d63013eb8a.zip |
make a simpler gh action
-rw-r--r-- | .github/workflows/npm-publish.yml | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 71b1187..1d44229 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -9,7 +9,7 @@ on: types: [created] jobs: - build: + publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -17,19 +17,6 @@ jobs: with: deno-version: v1.x - run: deno task css - - uses: actions/upload-artifact@v3 - with: - name: dist - path: | - ./dist - publish-npm: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 - with: - name: dist - uses: actions/setup-node@v3 with: node-version: 16 |