|
@@ -0,0 +1,13 @@
|
|
|
|
+name: Publish Docker
|
|
|
|
+on: [push]
|
|
|
|
+jobs: build:
|
|
|
|
+ runs-on: ubuntu-latest
|
|
|
|
+ steps:
|
|
|
|
+ - uses: actions/checkout@master
|
|
|
|
+ - name: Publish to Registry
|
|
|
|
+ with:
|
|
|
|
+ name: nusak/netmaker
|
|
|
|
+ username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
+ password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
+ default_branch: arm_docker
|
|
|
|
+ platforms: linux/amd64, linux/arm64
|