Files
sune/.github/workflows/BUILD.yml
2026-03-11 19:52:47 -07:00

14 lines
491 B
YAML

on: workflow_call
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
token: ${{secrets.GITHUB_TOKEN}}
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install && bun run build
- run: git config user.name github-actions[bot] && git config user.email github-actions[bot]@users.noreply.github.com && git add . && git commit -m "This build was committed by a bot." && git push