aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/publish.yml
blob: c8124406f49426b13d5eb9d857b7545fe89d8084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: CI

on:
  create:
    tags:
      - v*

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: borales/actions-yarn@v2.0.0
        with:
          cmd: install
      - uses: borales/actions-yarn@v2.0.0
        with:
          cmd: build
      - uses: borales/actions-yarn@v2.0.0
        auth-token: ${{ secrets.NPM_AUTH_TOKEN }}
        with:
          cmd: publish