Skip to content

Commit

Permalink
Force v13.0.0 as the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Nov 14, 2024
1 parent 24c5032 commit 7647566
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/npm_mark_latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: npm mark latest
on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
always-auth: true

- name: Publish npm package to both places
run: npm dist-tag add "@stellar/stellar-sdk"@v13.0.0 latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 7647566

Please sign in to comment.