feat(v2): add automated canary releases (#3827)

* attempt to add automated canary releases

* fix canary releases workflow
This commit is contained in:
Sébastien Lorber 2020-12-01 11:56:59 +01:00 committed by GitHub
parent 8217fb64c9
commit 28a83d73e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

26
.github/workflows/canary-releases.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Canary releases
on:
push:
branches:
- master
jobs:
publish-canary:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Installation
run: yarn
- name: Publish Canary release
run: |
yarn canary
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}