24 lines
655 B
YAML
24 lines
655 B
YAML
|
on: push
|
||
|
jobs:
|
||
|
build-docker:
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
image: catthehacker/ubuntu:act-latest
|
||
|
steps:
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v3
|
||
|
|
||
|
- name: Login to DockerHub
|
||
|
uses: docker/login-action@v3
|
||
|
with:
|
||
|
registry: git.comprofix.com
|
||
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||
|
|
||
|
- name: Build and push
|
||
|
uses: docker/build-push-action@v6
|
||
|
with:
|
||
|
context: ./
|
||
|
file: ./Dockerfile
|
||
|
push: true
|
||
|
tags: git.comprofix.com/mmckinnon/alpine-runner:latest
|