Skip to content

Commit

Permalink
chore: add action
Browse files Browse the repository at this point in the history
  • Loading branch information
couriourc committed Sep 8, 2024
1 parent 499b6ca commit d0cbe64
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Builder
on:
push:
# Sequence of patterns matched against refs/tags
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
run: bun install --frozen-lockfile && bun run build:all
- name: Upload binaries to release
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/**
overwrite: true
tags: true
tag: ${{ github.ref }}

0 comments on commit d0cbe64

Please sign in to comment.