Skip to content

Commit

Permalink
fix canary releases workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Nov 26, 2020
1 parent c76c4a5 commit 51d1517
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/canary-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,21 @@ on:
- master

jobs:
publish:
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 }}

0 comments on commit 51d1517

Please sign in to comment.