Tether/.gitea/workflows/publish-js-sdk.yml

41 lines
782 B
YAML
Raw Normal View History

2024-09-09 16:17:26 -07:00
name: Publish JS SDK
on:
push:
branches: ["master"]
paths:
[
".gitea/workflows/publish-js-sdk.yml",
"JS-SDK/**",
"!JS-SDK/README.md",
"!README.md",
"!LICENSE.md",
]
jobs:
docker:
runs-on: "ubuntu-latest"
defaults:
run:
working-directory: "./JS-SDK"
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
# Setup Bun
- name: Setup Bun
uses: oven-sh/setup-bun@v1
# Install Dependencies
- name: Install Dependencies
run: bun install --frozen-lockfile
# Publish to NPM
- name: Publish to NPM
run: npm publish
env:
NPM_TOKEN: ${{ secrets.PUBLISH_NPM_TOKEN }}