removed beta workflow
This commit is contained in:
parent
4c11592975
commit
ab17fc6b7d
1 changed files with 0 additions and 27 deletions
27
.github/workflows/publish-beta.yml
vendored
27
.github/workflows/publish-beta.yml
vendored
|
@ -1,27 +0,0 @@
|
||||||
name: publish-and-tag
|
|
||||||
env:
|
|
||||||
CI: true
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- beta
|
|
||||||
jobs:
|
|
||||||
publish-to-npm:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: setup Node
|
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: 14.x
|
|
||||||
registry-url: 'https://registry.npmjs.org'
|
|
||||||
- name: install
|
|
||||||
run: npm install
|
|
||||||
- name: test
|
|
||||||
run: npm test
|
|
||||||
# Publish to npm if this version is not published
|
|
||||||
- name: publish
|
|
||||||
run: npm run publish:beta
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
Loading…
Reference in a new issue