mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-05 20:32:42 +02:00
feat(v2): add automated canary releases (#3827)
* attempt to add automated canary releases * fix canary releases workflow
This commit is contained in:
parent
8217fb64c9
commit
28a83d73e3
2 changed files with 29 additions and 0 deletions
26
.github/workflows/canary-releases.yml
vendored
Normal file
26
.github/workflows/canary-releases.yml
vendored
Normal 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue