forked from adamlaska/browser-compat-data
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (26 loc) · 810 Bytes
/
release.yml
File metadata and controls
30 lines (26 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Release package
on:
release:
types: [published]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Publish release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
registry-url: "https://registry.npmjs.org/"
- run: npm install
- run: npm test
- run: npm run release-build
- run: npm publish build/ --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Add JSON as a release asset
run: gh release upload ${GITHUB_REF#refs/*/} build/data.json
- name: Publish stats for all data (#3555)
run: npm run --silent stats | gh issue comment https://github.com/mdn/browser-compat-data/issues/3555 --body-file -