mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-04 10:54:24 +08:00
docker git action
This commit is contained in:
parent
3bcfcf83f2
commit
87ae4ddbef
1 changed files with 31 additions and 12 deletions
43
.github/workflows/publish-docker.yml
vendored
43
.github/workflows/publish-docker.yml
vendored
|
@ -1,15 +1,34 @@
|
||||||
name: Publish Docker
|
name: Publish Docker
|
||||||
on: [push]
|
|
||||||
jobs:
|
on:
|
||||||
build:
|
push:
|
||||||
|
branches:
|
||||||
|
- 'arm-docker'
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
-
|
||||||
- name: Publish to Registry
|
name: Checkout
|
||||||
uses: elgohr/Publish-Docker-Github-Actions@master
|
uses: actions/checkout@v2
|
||||||
with:
|
-
|
||||||
name: nusak/netmaker
|
name: Set up QEMU
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
uses: docker/setup-qemu-action@v1
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
-
|
||||||
default_branch: arm_docker
|
name: Set up Docker Buildx
|
||||||
platforms: linux/amd64, linux/arm64
|
uses: docker/setup-buildx-action@v1
|
||||||
|
-
|
||||||
|
name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Build and push
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/amd64, linux/arm64, linux/arm7
|
||||||
|
push: true
|
||||||
|
tags: nusak/netmaker:latest
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue