Sfoglia il codice sorgente

ci(GA): add release job step (#6558)

bubble
Tim Lai 3 anni fa
committed by GitHub
parent
commit
c9420960c7
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. +12
    -0
      .github/workflows/nodejs.yml

+ 12
- 0
.github/workflows/nodejs.yml Vedi File

@@ -29,3 +29,15 @@ jobs:
run: npm test
env:
CI: true

release:
if: contains(github.ref, 'master')
runs-on: ubuntu-latest
needs: [build]

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x

Caricamento…
Annulla
Salva