Files
update-homelab-ip/.github/workflows/docker.yml
T
deploy 356b64835f
Build and Deploy Docker / build (push) Failing after 24s
another test
2026-06-29 23:29:25 +02:00

31 lines
615 B
YAML

name: Build and Deploy Docker
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: git.rhost.ovh
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: service/.
push: true
tags: git.rhost.ovh/${{ github.repository }}:latest