-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (66 loc) · 2.23 KB
/
release-actions.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: release-actions
on:
push:
branches:
- main
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
env:
NO_COVERAGE_BADGE_UPDATE: 1
FLAGS: FETCH_SERVICE_DISABLE,POST_CONFIGURE_TEST
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn build
- run: node examples/builder.js
- run: node examples/readable-buffer.js
# - run: yarn coverage
# - uses: denoland/setup-deno@v1
# with:
# deno-version: v1.x
# - run: |
# yarn deno:example
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Package Registry Publish - npm
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
npm set "registry=https://registry.npmjs.org/"
npm set "@opennetwork:registry=https://registry.npmjs.org/"
npm set "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}"
npm publish --access=public
continue-on-error: true
env:
YARN_TOKEN: ${{ secrets.YARN_TOKEN }}
NPM_TOKEN: ${{ secrets.YARN_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
- name: Package Registry Publish - GitHub
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
npm set "registry=https://npm.pkg.github.com/"
npm set "@opennetwork:registry=https://npm.pkg.github.com/opennetwork"
npm set "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}"
npm publish --access=public
env:
YARN_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true