Skip to content

Commit

Permalink
Create image.yml
Browse files Browse the repository at this point in the history
Auto build Docker images
  • Loading branch information
hardillb committed Oct 5, 2020
1 parent 00766f6 commit a1c7552
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build images
on:
push:
branches: master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-build@v1
with:
version: latest
- name: build
run: |
docker buildx build \
--tag hardillb/traefik-avahi-helper:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .

0 comments on commit a1c7552

Please sign in to comment.