ci: prepare for v0.1.0 release
- Add Claudia logo to release body - Add first release announcement and feature highlights - Clean up test branch references in build workflows - Update release body formatting for better presentation - Fix reusable workflow errors by adding workflow_call triggers to build workflows
This commit is contained in:
3
.github/workflows/build-linux.yml
vendored
3
.github/workflows/build-linux.yml
vendored
@@ -1,9 +1,10 @@
|
|||||||
name: Build Linux
|
name: Build Linux
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_call:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: [main, test-linux-workflow]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
18
.github/workflows/build-macos.yml
vendored
18
.github/workflows/build-macos.yml
vendored
@@ -1,6 +1,22 @@
|
|||||||
name: Build macOS
|
name: Build macOS
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
APPLE_CERTIFICATE:
|
||||||
|
required: true
|
||||||
|
APPLE_CERTIFICATE_PASSWORD:
|
||||||
|
required: true
|
||||||
|
KEYCHAIN_PASSWORD:
|
||||||
|
required: true
|
||||||
|
APPLE_SIGNING_IDENTITY:
|
||||||
|
required: true
|
||||||
|
APPLE_ID:
|
||||||
|
required: true
|
||||||
|
APPLE_TEAM_ID:
|
||||||
|
required: true
|
||||||
|
APPLE_PASSWORD:
|
||||||
|
required: true
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
skip_build:
|
skip_build:
|
||||||
@@ -13,7 +29,7 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
push:
|
push:
|
||||||
branches: [main, test-linux-workflow]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
@@ -97,7 +97,21 @@ jobs:
|
|||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
files: release-assets/*
|
files: release-assets/*
|
||||||
body: |
|
body: |
|
||||||
## Claudia ${{ steps.version.outputs.version }}
|
<div align="center">
|
||||||
|
<img src="https://raw.githubusercontent.com/${{ github.repository }}/${{ steps.version.outputs.version }}/src-tauri/icons/icon.png" alt="Claudia Logo" width="128" height="128">
|
||||||
|
|
||||||
|
# Claudia ${{ steps.version.outputs.version }}
|
||||||
|
|
||||||
|
🎉 **First Release!** 🎉
|
||||||
|
|
||||||
|
### 🚀 What's New in This First Release
|
||||||
|
|
||||||
|
- **AI-Powered Coding**: Seamless integration with Claude for intelligent code assistance
|
||||||
|
- **Cross-Platform Support**: Available for macOS and Linux
|
||||||
|
- **Modern UI**: Clean, intuitive interface built with React and Tauri
|
||||||
|
- **MCP Support**: Model Context Protocol integration for enhanced capabilities
|
||||||
|
- **Session Management**: Save and restore your coding sessions
|
||||||
|
- **And much more!**
|
||||||
|
|
||||||
### Downloads
|
### Downloads
|
||||||
|
|
||||||
@@ -126,6 +140,3 @@ jobs:
|
|||||||
|
|
||||||
All files include `.sha256` signature files for verification.
|
All files include `.sha256` signature files for verification.
|
||||||
|
|
||||||
### What's Changed
|
|
||||||
|
|
||||||
See below for a full list of changes in this release.
|
|
||||||
|
Reference in New Issue
Block a user