Files
openssh-client/.gitea/workflows/build.yml
T
vasyansk 2dc9cd58aa
Build and Push / build (push) Failing after 12s
Update build.yml
2026-05-27 23:17:11 +07:00

31 lines
642 B
YAML

name: Build and Push
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: git.realmanual.ru
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: git.realmanual.ru/pub/openssh-client:latest