8a4d4b1b75
Multi-Platform CI / test-platforms (ubuntu-22.04) (push) Successful in 18s
Multi-Platform CI / test-platforms (windows-latest) (push) Successful in 18s
Multi-Platform CI / Package for Linux x86_64 (push) Has been skipped
Multi-Platform CI / Package for Windows x86_64 (push) Has been skipped
Multi-Platform CI / Create GitHub Release (push) Has been skipped
- Drop GPT-based release notes; generate from git log into release_notes.md - Remove OPENAI_API_KEY requirement - Replace curl-based release creation and asset uploads with akkuman/gitea-release-action@v1 (uses body_path and files) - Add NODE_OPTIONS=--experimental-fetch for the action This reduces complexity, removes an external dependency, and makes releases more deterministic and maintainable.
127 lines
3.8 KiB
YAML
127 lines
3.8 KiB
YAML
name: Multi-Platform CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
# Test on platforms with native builds only
|
|
test-platforms:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# Linux native
|
|
- os: ubuntu-22.04
|
|
|
|
# Windows native
|
|
- os: windows-latest
|
|
|
|
uses: ./.gitea/workflows/ci-reusable.yml
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
upload-artifacts: false
|
|
|
|
# Package for distribution (only on master)
|
|
package:
|
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')
|
|
needs: [test-platforms]
|
|
# Both jobs run on ubuntu, but with different targets
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# Configuration for the native Linux build
|
|
- name: Linux x86_64
|
|
target: 'x86_64-unknown-linux-gnu' # An empty target means native build
|
|
|
|
# Configuration for the Windows cross-compile build
|
|
- name: Windows x86_64
|
|
target: 'x86_64-pc-windows-gnu'
|
|
|
|
name: Package for ${{ matrix.name }}
|
|
uses: ./.gitea/workflows/ci-reusable.yml
|
|
with:
|
|
# Both jobs are sent to an ubuntu runner
|
|
os: ubuntu-22.04
|
|
# The target is passed to the reusable workflow
|
|
target: ${{ matrix.target }}
|
|
upload-artifacts: true
|
|
package-only: true
|
|
|
|
# Create GitHub release with all artifacts
|
|
create-release:
|
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')
|
|
needs: [package]
|
|
runs-on: ubuntu-22.04
|
|
name: Create GitHub Release
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # Fetch full history for release notes generation
|
|
|
|
- name: Download all artifacts
|
|
uses: https://github.com/christopherHX/gitea-download-artifact@v4
|
|
with:
|
|
path: artifacts/
|
|
|
|
- name: Extract version from Cargo.toml
|
|
id: version
|
|
run: |
|
|
VERSION=$(sed -n 's/^version\s*=\s*"\([^"]\+\)"/\1/p' Cargo.toml | head -n1)
|
|
echo "version=v$VERSION" >> $GITHUB_OUTPUT
|
|
echo "Version: v$VERSION"
|
|
|
|
- name: Get last release tag
|
|
id: last_tag
|
|
run: |
|
|
LAST_TAG=$(git describe --tags --abbrev=0 HEAD~1 2>/dev/null || echo "")
|
|
if [ -z "$LAST_TAG" ]; then
|
|
LAST_TAG=$(git rev-list --max-parents=0 HEAD)
|
|
fi
|
|
echo "last_tag=$LAST_TAG" >> $GITHUB_OUTPUT
|
|
echo "Last tag/commit: $LAST_TAG"
|
|
|
|
- name: Generate release notes
|
|
run: |
|
|
# Get git log since last release
|
|
if [ -n "${{ steps.last_tag.outputs.last_tag }}" ]; then
|
|
GIT_LOG=$(git log --pretty=format:"- %s (%an)" ${{ steps.last_tag.outputs.last_tag }}..HEAD)
|
|
else
|
|
GIT_LOG=$(git log --pretty=format:"- %s (%an)" HEAD~10..HEAD)
|
|
fi
|
|
|
|
# Generate simple release notes
|
|
cat > release_notes.md << EOF
|
|
## Release ${{ steps.version.outputs.version }}
|
|
|
|
### Changes
|
|
$GIT_LOG
|
|
|
|
---
|
|
*Generated automatically from commit history*
|
|
EOF
|
|
|
|
echo "Generated release notes:"
|
|
cat release_notes.md
|
|
|
|
- name: Prepare release assets
|
|
run: |
|
|
mkdir -p release_assets
|
|
find artifacts/ -name "*.tar.gz" -o -name "*.zip" | while read file; do
|
|
cp "$file" release_assets/
|
|
done
|
|
ls -la release_assets/
|
|
|
|
- name: Create GitHub Release with Assets
|
|
uses: akkuman/gitea-release-action@v1
|
|
env:
|
|
NODE_OPTIONS: '--experimental-fetch'
|
|
with:
|
|
server_url: ${{ github.server_url }}
|
|
token: ${{ secrets.RELEASE_TOKEN }}
|
|
tag_name: ${{ steps.version.outputs.version }}
|
|
body_path: release_notes.md
|
|
files: |-
|
|
release_assets/** |