Skip to content

Commit

Permalink
Task: Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zya committed Dec 2, 2023
1 parent 1600684 commit 0190aeb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release LiteLLM.js to NPM

on:
release:
types:
- [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 0190aeb

Please sign in to comment.