Add betapublish action.

master
hasan genc 3 years ago committed by GitHub
parent 90ebdbd8f6
commit b3e98949ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 33
      .github/workflows/betapublish.yml

@ -0,0 +1,33 @@
name: Publish Package
on:
release:
types: [prereleased]
jobs:
Publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
- name: Build
run: npm run build
- name: Publish
run: npm publish --access=public --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading…
Cancel
Save