Skip to content

Commit

Permalink
ci: publish canary release (#3257)
Browse files Browse the repository at this point in the history
  • Loading branch information
ForbesLindesay committed May 24, 2020
1 parent 24a7b8e commit ccba7da
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 24 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/rollingversions-canary.yml
@@ -0,0 +1,40 @@
name: Publish Canary

on:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn prettier:check
- run: yarn test

publish-canary:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npx rollingversions publish --canary $GITHUB_RUN_NUMBER
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
21 changes: 0 additions & 21 deletions .github/workflows/rollingversions-dry-run.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/rollingversions.yml
Expand Up @@ -31,6 +31,7 @@ jobs:
node-version: 12.x
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npx rollingversions publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
@@ -1,9 +1,6 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master
Expand Down

0 comments on commit ccba7da

Please sign in to comment.