netmaker/.github/workflows/publish-docker.yml
Workflow config file is invalid. Please check your config file: yaml: line 3: mapping values are not allowed in this context
Matthew R Kasun e11017a4c3 pubish docker
2021-04-06 13:51:13 +00:00

14 lines
411 B
YAML

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