Skip to content

Commit

Permalink
Hyper Client (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
developeruche authored Mar 3, 2024
1 parent 269a934 commit 5de0618
Show file tree
Hide file tree
Showing 43 changed files with 24,341 additions and 182 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/hyperclient.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish hyperclient to npmjs

on:
workflow_dispatch:

concurrency:
group: hyperclient-publish-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@polytope-labs'
- run: |
cd modules/client/pkg
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 5de0618

Please sign in to comment.