mirror of
https://github.com/multipleof4/sune.git
synced 2026-03-17 03:01:03 +00:00
16 lines
521 B
YAML
16 lines
521 B
YAML
on: push
|
|
jobs:
|
|
build-push:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
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
|