Skip to content

Commit

Permalink
SK-1811 workflow file for beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
skyflow-shravan committed Dec 20, 2024
1 parent 620a49b commit 4265460
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Public Release

on:
push:
tags: '*.*.*-beta.*'
paths-ignore:
- "package.json"
- "package-lock.json"
- "*.md"


jobs:
build-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 14.17.6
registry-url: 'https://registry.npmjs.org'
- run: npm install

- name: Build
run: npm run build

- name: publish to npm
run: npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 4265460

Please sign in to comment.