Skip to content

Commit

Permalink
🎉 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
technocidal committed Jul 24, 2024
1 parent 8121c6f commit 613f4a9
Show file tree
Hide file tree
Showing 11 changed files with 1,278 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release
on:
push:
tags:
- "**"
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: bun install
- name: Build Release
run: bun release
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: dist/index.js
make_latest: "true"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,7 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Custom

example/index.js
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bun 1.1.20
Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit 613f4a9

Please sign in to comment.