9 Commits

Author SHA1 Message Date
Sagent b9a30bc02b chore: remove empty renovate.json, covered by global config
Docker Build and Push / build (pull_request) Successful in 58s
2026-06-09 13:55:39 +00:00
Sagent 7508880485 chore: remove redundant configs now handled globally
Docker Build and Push / build (pull_request) Successful in 1m5s
2026-06-09 13:42:37 +00:00
Sagent 1bad6949f0 chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Failing after 13m31s
2026-06-09 12:45:48 +00:00
jcabillot f332c9c32a Merge pull request 'fix: set build context to root instead of pkg' (#4) from fix/build-context into main
Docker Build and Push / build (push) Successful in 1m9s
Reviewed-on: #4
2026-05-29 16:35:40 -04:00
Julien Cabillot 86c9cb87e4 fix: set build context to root instead of pkg
Docker Build and Push / build (pull_request) Successful in 46s
The build context was set to 'pkg', but the Dockerfile references
requirements.txt and src/ which are at the repository root.
Changing context to '.' gives Docker access to all necessary files.
2026-05-29 16:33:34 -04:00
jcabillot 5bfa99ec55 feat: add Gitea Actions workflow
Docker Build and Push / build (push) Failing after 21s
feat: add Gitea Actions workflow
2026-05-29 16:22:57 -04:00
Julien Cabillot 9ae88e346c feat: add Gitea Actions workflow
Docker Build and Push / build (pull_request) Failing after 1m15s
2026-05-29 14:51:19 -04:00
Julien Cabillot 2f4d11a53f feat: add Gitea Actions workflow
Docker Build and Push / build (pull_request) Failing after 54s
2026-05-29 14:23:33 -04:00
Julien Cabillot ef4bec6b45 feat: add Gitea Actions workflow
Docker Build and Push / build (pull_request) Failing after 34s
2026-05-29 14:09:26 -04:00
2 changed files with 48 additions and 1 deletions
+47
View File
@@ -0,0 +1,47 @@
name: Docker Build and Push
on:
pull_request:
branches: [main]
push:
branches: [main]
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v6
with:
images: jcabillot/mcp-caldav
tags: |
#type=ref,event=branch
#type=ref,event=pr
#type=sha
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: pkg/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
pull: true
+1 -1
View File
@@ -2,7 +2,7 @@ mcp>=1,<2
fastmcp>=3,<4
python-dotenv>=1,<2
uvicorn>=0.34,<1
starlette>=1.1,<2
starlette>=0.46,<1
icalendar>=7,<8
recurring-ical-events>=3,<4
python-dateutil>=2,<3