Skip to content

Commit 74c2bb3

Browse files
committed
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
1 parent 6a63926 commit 74c2bb3

File tree

3 files changed

+34
-6
lines changed

3 files changed

+34
-6
lines changed

.github/workflows/build-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Build Linux
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
push:
6-
branches: [main, test-linux-workflow]
7+
branches: [main]
78

89
jobs:
910
build:

.github/workflows/build-macos.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
name: Build macOS
22

33
on:
4+
workflow_call:
5+
secrets:
6+
APPLE_CERTIFICATE:
7+
required: true
8+
APPLE_CERTIFICATE_PASSWORD:
9+
required: true
10+
KEYCHAIN_PASSWORD:
11+
required: true
12+
APPLE_SIGNING_IDENTITY:
13+
required: true
14+
APPLE_ID:
15+
required: true
16+
APPLE_TEAM_ID:
17+
required: true
18+
APPLE_PASSWORD:
19+
required: true
420
workflow_dispatch:
521
inputs:
622
skip_build:
@@ -13,7 +29,7 @@ on:
1329
required: false
1430
type: string
1531
push:
16-
branches: [main, test-linux-workflow]
32+
branches: [main]
1733

1834
jobs:
1935
build:

.github/workflows/release.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,21 @@ jobs:
9797
generate_release_notes: true
9898
files: release-assets/*
9999
body: |
100-
## Claudia ${{ steps.version.outputs.version }}
100+
<div align="center">
101+
<img src="https://raw.githubusercontent.com/${{ github.repository }}/${{ steps.version.outputs.version }}/src-tauri/icons/icon.png" alt="Claudia Logo" width="128" height="128">
102+
103+
# Claudia ${{ steps.version.outputs.version }}
104+
105+
🎉 **First Release!** 🎉
106+
107+
### 🚀 What's New in This First Release
108+
109+
- **AI-Powered Coding**: Seamless integration with Claude for intelligent code assistance
110+
- **Cross-Platform Support**: Available for macOS and Linux
111+
- **Modern UI**: Clean, intuitive interface built with React and Tauri
112+
- **MCP Support**: Model Context Protocol integration for enhanced capabilities
113+
- **Session Management**: Save and restore your coding sessions
114+
- **And much more!**
101115
102116
### Downloads
103117
@@ -126,6 +140,3 @@ jobs:
126140
127141
All files include `.sha256` signature files for verification.
128142
129-
### What's Changed
130-
131-
See below for a full list of changes in this release.

0 commit comments

Comments
 (0)