mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2024-11-04 17:31:17 +00:00
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
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: Set sha_short
|
|
id: vars
|
|
run: echo ::set-output name=sha_short::$(git rev-parse --short HEAD)
|
|
-
|
|
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 }}
|
|
buildArg: COMMIT=${{ steps.vars.outputs.sha_short }} |