Skip to content

Commit

Permalink
Merge pull request #5 from upstash/DX-490
Browse files Browse the repository at this point in the history
Add release script to lock lib
  • Loading branch information
ogzhanolguncu authored Nov 23, 2023
2 parents 3c4c597 + 16d72dc commit 0b20bf5
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Release

on:
release:
types:
- published

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18

- name: Set version
run: node cmd/set-version.js . ${GITHUB_REF#refs/*/}

- name: Install bun
run: npm install -g bun

- name: Install dependencies
run: bun install

- name: Build
run: bun run build

- name: Add npm token
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc

- name: Publish release candidate
if: "github.event.release.prerelease"
run: npm publish --access public --tag=canary --no-git-checks

- name: Publish
if: "!github.event.release.prerelease"
run: npm publish --access public --no-git-checks

0 comments on commit 0b20bf5

Please sign in to comment.