This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
clawdbot_build/.gitea/workflows/deploy.yml
Aydent 0a66b389d3
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m11s
feat: add Gitea Actions workflow to build and push Docker image to container registry.
2026-01-28 21:06:40 +01:00

28 lines
628 B
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to Gitea Container Registry
uses: docker/login-action@v2
with:
registry: gitea.lemarechal.eu
username: ${{ gitea.actor }}
password: ${{ secrets.PACKAGES_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: gitea.lemarechal.eu/aydent/clawdbot:latest