Skip to content

Update ledger sdk (#606) #114

Update ledger sdk (#606)

Update ledger sdk (#606) #114

Workflow file for this run

name: Publish NPM Package
on:
release:
types: [created]
push:
tags:
# Main release versions: v1, v1.2, v1.2.3
- "v[0-9]+"
- "v[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+"
# Prerelease versions: v1.2.3-rc1, v1.2.3-beta.1, etc.
- "v[0-9]+.[0-9]+.[0-9]+-*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
id-token: write # Required for npm provenance/OIDC
jobs:
publish-npm:
uses: zondax/_workflows/.github/workflows/_publish-npm.yaml@main
with:
timeout_minutes: 10
dry_run: false
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH_AUTO }}