Skip to content

Commit 5de0618

Browse files
Hyper Client (#103)
1 parent 269a934 commit 5de0618

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+24341
-182
lines changed

.github/workflows/hyperclient.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Publish hyperclient to npmjs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
concurrency:
7+
group: hyperclient-publish-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
# Setup .npmrc file to publish to npm
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: '20.x'
19+
registry-url: 'https://registry.npmjs.org'
20+
scope: '@polytope-labs'
21+
- run: |
22+
cd modules/client/pkg
23+
npm publish --access public
24+
env:
25+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)