Skip to content

Commit

Permalink
Add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
anssari1 committed Nov 27, 2023
1 parent 4fd8953 commit 48349d2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish-releases.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Generate SDK - Main
on:
workflow_dispatch:
jobs:
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.18.2
- name: Install dependencies
run: npm install
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
run: npx semantic-release

0 comments on commit 48349d2

Please sign in to comment.