Skip to content

Commit

Permalink
Merge pull request #1 from secretkeylabs/beta
Browse files Browse the repository at this point in the history
cleanup + update unisat adapter
  • Loading branch information
m-aboelenein authored Mar 28, 2024
2 parents 2025c76 + e45d1a0 commit f3076a8
Show file tree
Hide file tree
Showing 17 changed files with 404 additions and 252 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build-and-publish-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and Publish NPM package

on:
pull_request:

jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm ci

- name: Run build
run: npm run build

- id: current-version
name: Get current version
run: echo "CURRENT_VERSION=$(npm pkg get version | tr -d '"')" >> $GITHUB_OUTPUT

- id: sha
name: Get commit sha
run: echo "SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Set publish version
run: npm version --no-git-tag-version $CURRENT_VERSION-$SHA
env:
SHA: ${{ steps.sha.outputs.SHA }}
CURRENT_VERSION: ${{ steps.current-version.outputs.CURRENT_VERSION }}

- name: Publish to NPM package registry
run: npm publish --access=public --tag pr-$PR_NUMBER
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGE_REGISTRY_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
2 changes: 1 addition & 1 deletion .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
VERSION=$(npm pkg get version | jq . -r)
npm dist-tag add sats-connect@$VERSION latest
npm dist-tag add @sats-connect/core@$VERSION latest
104 changes: 0 additions & 104 deletions .github/workflows/release-pull-request.yml

This file was deleted.

15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @sats-connect/core
# `@sats-connect/core`

Sats connect is a simple javascript library that connects apps to Bitcoin wallets like Xverse to retrieve user wallet addresses and sign transactions (PSBTs).

[Read the docs](https://docs.xverse.app/sats-connect/)

# Building the `@sats-connect/core` package

To build the `@sats-connect/core` package, run

```bash
npm run build
```

# Docs

[Developer Docs](https://docs.xverse.app/sats-connect/)
Loading

0 comments on commit f3076a8

Please sign in to comment.