Skip to content

Commit 4b3649f

Browse files
committed
only publish on manual trigger of workflow
1 parent eff3bc0 commit 4b3649f

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/publish.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
name: Publish
1+
name: Publish TS SDK
22

33
on:
4-
release:
5-
types: [published]
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'Version to publish'
8+
required: true
9+
type: 'string'
610

711
jobs:
8-
publish:
12+
publish-ts-sdk:
913
runs-on: ubuntu-latest
1014

1115
steps:
@@ -16,17 +20,13 @@ jobs:
1620
cache: "npm"
1721
registry-url: "https://registry.npmjs.org"
1822
- run: npm ci
23+
- run: npm run version $VERSION
1924
- run: npm run build --if-present
2025
- run: npm test
2126
- run: |
22-
version="$GITHUB_REF_NAME"
23-
24-
# Sync version number to all package.json files
25-
npm run version $version
26-
27-
if [[ $version == *"beta"* ]]; then
27+
if [[ $VERSION == *"beta"* ]]; then
2828
tag=beta
29-
elif [[ $version == *"alpha"* ]]; then
29+
elif [[ $VERSION == *"alpha"* ]]; then
3030
tag=alpha
3131
else
3232
tag=latest
@@ -38,5 +38,6 @@ jobs:
3838
--workspace solana \
3939
--workspace sdk/route
4040
env:
41+
VERSION: ${{ inputs.version }}
4142
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4243
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry

0 commit comments

Comments
 (0)