Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 928cc8a

Browse files
committed
ci/cd: add release details
1 parent d61b199 commit 928cc8a

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

.github/workflows/build-release.yml

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -309,16 +309,50 @@ jobs:
309309
body: |
310310
## Changes in v${{ needs.version-check.outputs.new_version }}
311311
312-
This is a ${{ needs.version-check.outputs.release_type }} release.
312+
This is a **${{ needs.version-check.outputs.release_type }}** release.
313313
314-
### Changes:
314+
### 🚀 Changes:
315315
${{ needs.version-check.outputs.changelog }}
316316
317-
### Assets
318-
- Linux (amd64, arm64)
319-
- macOS (amd64, arm64)
320-
- Windows (amd64)
321-
- Docker images: `ghcr.io/ofkm/arcane-agent:v${{ needs.version-check.outputs.new_version }}`
317+
### 📦 Download Assets
318+
319+
**Binaries:**
320+
- `arcane-agent-linux-amd64` - Linux x86_64
321+
- `arcane-agent-linux-arm64` - Linux ARM64
322+
- `arcane-agent-darwin-amd64` - macOS Intel
323+
- `arcane-agent-darwin-arm64` - macOS Apple Silicon
324+
- `arcane-agent-windows-amd64.exe` - Windows x86_64
325+
326+
**Docker Images:**
327+
```bash
328+
# Latest version
329+
docker pull ghcr.io/ofkm/arcane-agent:v${{ needs.version-check.outputs.new_version }}
330+
331+
# Version tags
332+
docker pull ghcr.io/ofkm/arcane-agent:${{ needs.version-check.outputs.new_version }}
333+
docker pull ghcr.io/ofkm/arcane-agent:latest
334+
335+
# Multi-architecture support (linux/amd64, linux/arm64)
336+
```
337+
338+
### 🐳 Quick Start with Docker
339+
```bash
340+
# Run the agent
341+
docker run -d --name arcane-agent \
342+
-e ARCANE_HOST=your-server.com \
343+
-e ARCANE_PORT=3000 \
344+
-e AGENT_ID=my-agent \
345+
-v /var/run/docker.sock:/var/run/docker.sock \
346+
ghcr.io/ofkm/arcane-agent:v${{ needs.version-check.outputs.new_version }}
347+
```
348+
349+
### 📋 Installation
350+
```bash
351+
# Download and install (Linux/macOS)
352+
curl -L https://github.com/ofkm/arcane-agent/releases/download/v${{ needs.version-check.outputs.new_version }}/arcane-agent-linux-amd64 -o arcane-agent
353+
chmod +x arcane-agent
354+
./arcane-agent --help
355+
```
322356
files: release/*
323357
draft: false
324358
prerelease: false

0 commit comments

Comments
 (0)