0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-09-11 12:24:27 +00:00

Github workflow to build multi arch docker image, thx to zmingxie

This commit is contained in:
vx3r
2020-02-07 15:15:39 +09:00
parent 14660f487d
commit 8d6a05e2d9
4 changed files with 43 additions and 3 deletions

41
.github/workflows/dockerimage.yml vendored Normal file
View File

@ -0,0 +1,41 @@
name: Build multi-arch Docker Images via buildx
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
docker-buildx:
runs-on: ubuntu-latest
env:
DOCKER_IMAGE_NAME: vx3r/wg-gen-web
steps:
-
name: Checkout
uses: actions/checkout@v1
-
name: Build Docker Images Only
if: github.event_name == 'pull_request'
uses: ilteoood/docker_buildx@master
with:
publish: false
tag: dev
dockerFile: ./Dockerfile
platform: linux/amd64,linux/arm64,linux/arm/v7
imageName: ${{ env.DOCKER_IMAGE_NAME }}
-
name: Build and Publish Docker Images
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: ilteoood/docker_buildx@master
with:
publish: true
tag: latest
dockerFile: ./Dockerfile
platform: linux/amd64,linux/arm64,linux/arm/v7
imageName: ${{ env.DOCKER_IMAGE_NAME }}
dockerHubUser: ${{ secrets.DOCKER_LOGIN_USERNAME }}
dockerHubPassword: ${{ secrets.DOCKER_LOGIN_PASSWORD }}