Skip to content

Commit

Permalink
Create build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Seefaaa authored Jul 22, 2024
1 parent 08d4b39 commit da953fe
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run lint
- run: bun run build
- uses: actions/upload-artifact@v4
with:
name: Linux
path: |
dist/bot
if-no-files-found: error

0 comments on commit da953fe

Please sign in to comment.