Skip to content

Commit

Permalink
feat: Added bun workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Zastinian committed Jun 20, 2024
1 parent 7cd1899 commit 03afa0e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/bun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: build bun
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:
branches:
- master
paths:
- bun/**
jobs:
push:
name: "esdock:bun"
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- uses: docker/build-push-action@v5
with:
context: ./bun
file: ./bun/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/zastinian/esdock:bun

0 comments on commit 03afa0e

Please sign in to comment.