This repository has been archived on 2025-11-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lan-web/.gitea/workflows/build.yaml
zwitschi ea6979870b
Some checks failed
Build Docker Container / build (push) Failing after 10s
changeing to internal registry URL
2025-09-22 10:46:52 +02:00

28 lines
716 B
YAML

name: Build Docker Container
run-name: Build and Push Docker Image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
registry: 192.168.88.30:5000
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: git.allucanget.biz/allucanget/lan-web/lan-web:latest