Skip to content

Commit

Permalink
debug(ci): temporary gh workflow for build test
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed Oct 17, 2024
1 parent 0d0df3d commit fff80c9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Build & publish docker images
name: Buildtest

on:
workflow_dispatch:

jobs:
dockerhub:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: false
tags: |
b4bz/homer:test
platforms: linux/amd64,linux/arm/v7,linux/arm/v6,linux/arm64

0 comments on commit fff80c9

Please sign in to comment.