4 Commits

Author SHA1 Message Date
Sagent 46fb495ccb chore: remove redundant configs now handled globally
Docker Build and Push / build (pull_request) Successful in 2m39s
2026-06-09 13:42:40 +00:00
Sagent 41b76651ba chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Successful in 2m30s
2026-06-09 12:45:53 +00:00
Sagent fcdde47194 fix: clone HKUDS/nanobot source before build (like Jenkinsfile)
Docker Build and Push / build (push) Successful in 3m44s
2026-05-29 22:09:01 +00:00
jcabillot 5ee6bad8be feat: add Gitea Actions workflow
Docker Build and Push / build (push) Failing after 20s
feat: add Gitea Actions workflow
2026-05-29 16:22:52 -04:00
2 changed files with 19 additions and 2 deletions
+5 -2
View File
@@ -15,6 +15,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v6
- name: Clone HKUDS/nanobot source
run: git clone --depth 1 https://github.com/HKUDS/nanobot.git external-nanobot
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
@@ -39,8 +42,8 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v7
with:
context: nanobot
file: nanobot/Dockerfile
context: external-nanobot
file: external-nanobot/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
+14
View File
@@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"regexManagers": [
{
"description": "Track HKUDS/nanobot upstream releases (Dockerfile cloned at CI time)",
"fileMatch": ["^\\.gitea/workflows/docker-build\\.yaml$"],
"matchStrings": [
"git clone.*https://github.com/HKUDS/nanobot\\.git.*external-nanobot"
],
"depNameTemplate": "HKUDS/nanobot",
"datasourceTemplate": "github-tags"
}
]
}