generated from MrSphay/codex-agent-repository-kit
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 3m1s
27 lines
627 B
YAML
27 lines
627 B
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Log in to Gitea Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: registry.git.wilkensxl.de
|
|
username: ${{ gitea.actor }}
|
|
password: ${{ secrets.GITEA_TOKEN }}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: registry.git.wilkensxl.de/mrsphay/mobilemanager:latest
|