Files
tatlock/.gitea/workflows/build.yml
T
jpmschweitzer 214dc4e725
Build and Push / build (release) Failing after 11s
fixed ci/cd network issue
2025-12-14 10:49:29 +01:00

29 lines
693 B
YAML

name: Build and Push
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Gitea Registry
uses: docker/login-action@v3
with:
registry: git.schweitz.net
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
provenance: false
tags: |
git.schweitz.internal/jpmschweitzer/tatlock:latest
git.schweitz.internal/jpmschweitzer/tatlock:${{ github.ref_name }}