All checks were successful
Push Docker container / Build & Push container (push) Successful in 1m33s
25 lines
549 B
YAML
25 lines
549 B
YAML
name: Push Docker container
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build & Push container
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.mziesel.nl
|
|
username: ${{ secrets.LOGIN_USER }}
|
|
password: ${{ secrets.LOGIN_PASS }}
|
|
- name: Build and push
|
|
run: |
|
|
make docker-push
|