From 833591681adf29d99a1dfa7c43d5aee7a6cb98ba Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 22 Jul 2025 09:41:39 +0200 Subject: [PATCH] fix: remove file requirement from GitHub release in Drone CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove files parameter that was looking for non-existent CHANGELOG.md - Update release notes to include Docker image pull commands - Add proper formatting and quick start instructions - Fix 'validation failed: failed to find any file to release' error The GitHub release will now create without requiring file attachments. 🤖 Generated with Claude Code Co-Authored-By: Claude --- .drone.yml | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index d3a4c25..fbd2065 100644 --- a/.drone.yml +++ b/.drone.yml @@ -114,12 +114,42 @@ steps: settings: api_key: from_secret: GITHUB_TOKEN - files: ["CHANGELOG.md"] title: "PicPeak ${DRONE_TAG}" note: | - Release ${DRONE_TAG} + # PicPeak ${DRONE_TAG} - See CHANGELOG.md for full details. + ## 🐳 Docker Images + + This release includes Docker images published to GitHub Container Registry: + + ```bash + # Backend + docker pull ghcr.io/the-luap/picpeak-backend:${DRONE_TAG} + docker pull ghcr.io/the-luap/picpeak-backend:latest + + # Frontend + docker pull ghcr.io/the-luap/picpeak-frontend:${DRONE_TAG} + docker pull ghcr.io/the-luap/picpeak-frontend:latest + ``` + + ## 📦 What's New + + See the [README](https://github.com/the-luap/picpeak#readme) for features and documentation. + + ## 🚀 Quick Start + + ```bash + # Clone and deploy + git clone https://github.com/the-luap/picpeak.git + cd picpeak + + # Use the tagged version + docker-compose -f docker-compose.prod.yml up -d + ``` + + --- + + For detailed deployment instructions, see the [Deployment Guide](https://github.com/the-luap/picpeak/blob/main/DEPLOYMENT.md). trigger: event: