Files
docker-logger/.gitea/workflows/docker.yml
lif d8558b1417
Some checks failed
Build and Push Docker Image / build (push) Failing after 6s
Use alpine docker image
2025-09-14 19:28:31 +01:00

19 lines
385 B
YAML

name: Build and Push Docker Image
on:
push:
branches: [ main ]
jobs:
build:
runs-on: [label-one]
container:
image: node:alpine3.22
steps:
- uses: actions/checkout@v4
- name: Login to Registry
uses: docker/login-action@v2
with:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}