forked from Uniswap/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 1.17 KB
/
release-packages.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
name: Release Packages
on:
workflow_dispatch:
release:
types: [created]
jobs:
build-and-publish:
name: Build and Publish
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: |
yarn config set npmAuthToken ${{secrets.GITHUB_TOKEN}}
yarn install --immutable
yarn config unset npmAuthToken
- name: Build packages
# run: yarn g:build
run: |
yarn sdk @helix-bridge/router-sdk build
- name: Publish to GitHub Packages
run: |
npm publish -w @helix-bridge/router-sdk
# npm publish -w @helix-bridge/v2-sdk
# npm publish -w @helix-bridge/v3-sdk
# npm publish -w @helix-bridge/sdk-core
# npm publish -w @helix-bridge/universal-router-sdk
# npm publish -w @helix-bridge/uniswapx-sdk
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}