--- # generic name: 'Build and Publish' on: push: branches: - 'master' # build job jobs: build: runs-on: 'ubuntu-latest' steps: # checkout code - name: 'Clone repo' uses: 'actions/checkout@v2' # login to cr.simoncor.net - name: 'Login to cr.simoncor.net' uses: 'docker/login-action@v2' with: registry: 'cr.simoncor.net' username: ${{ vars.REGISTER_USERNAME }} password: ${{ vars.REGISTER_PASSWORD }} # build and publish container - name: 'Build and Publish' uses: 'docker/build-push-action@v3' with: context: '.' file: 'Dockerfile.linux.amd64' push: true tags: | cr.simoncor.net/siempie/ansible-deployment:latest cr.simoncor.net/siempie/ansible-deployment:v30