Skip to content

Commit

Permalink
Create Manual_Release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
greatsquare0 authored Aug 8, 2024
1 parent a3890a0 commit ba0bfe8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/Manual_Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
workflow_dispatch

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install Dependacies
run: bun install

- name: Build Package
run: bun run build

- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit ba0bfe8

Please sign in to comment.