release/0.1.0 #1

Merged
nvrl merged 1 commits from release/0.1.0 into main 2026-03-30 00:29:56 +02:00
2 changed files with 91 additions and 75 deletions

View File

@@ -2,30 +2,29 @@ name: CI
on: on:
pull_request: pull_request:
branches: [main] branches:
- main
jobs: jobs:
check: check:
runs-on: linux-amd64 name: Lint and Test
container: runs-on: ubuntu-latest
image: rust:1-bookworm
steps: steps:
- uses: actions/checkout@v4 - name: Checkout code
uses: actions/checkout@v4
- name: Cache cargo registry and build - name: Install Rust
uses: actions/cache@v3 uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
path: | toolchain: stable
~/.cargo/registry components: rustfmt, clippy
~/.cargo/git cache: false
target
key: cargo-ci-${{ hashFiles('**/Cargo.lock') }}
- name: Check formatting - name: Check formatting
run: rustup component add rustfmt && cargo fmt --check run: cargo fmt --check
- name: Clippy - name: Clippy
run: rustup component add clippy && cargo clippy -- -D warnings run: cargo clippy -- -D warnings
- name: Test rustitch - name: Test rustitch
run: cargo test -p rustitch run: cargo test -p rustitch
@@ -37,33 +36,28 @@ jobs:
run: cargo build --release run: cargo build --release
version-check: version-check:
runs-on: linux-amd64 name: Version Check
container: runs-on: ubuntu-latest
image: rust:1-bookworm
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Verify version was bumped - name: Compare versions
shell: bash
run: | run: |
PR_VERSION=$(grep -m1 '^version' stitch-peek/Cargo.toml | sed 's/.*"\(.*\)"/\1/') NEW_VERSION=$(grep -m1 '^version =' stitch-peek/Cargo.toml | cut -d '"' -f 2)
git fetch origin main
MAIN_VERSION=$(git show origin/main:stitch-peek/Cargo.toml | grep -m1 '^version' | sed 's/.*"\(.*\)"/\1/')
echo "PR version: $PR_VERSION" git fetch origin ${{ github.base_ref }}
echo "Main version: $MAIN_VERSION" OLD_VERSION=$(git show origin/${{ github.base_ref }}:stitch-peek/Cargo.toml | grep -m1 '^version =' | cut -d '"' -f 2)
if [ "$PR_VERSION" = "$MAIN_VERSION" ]; then echo "Old version (main): $OLD_VERSION"
echo "::error::Version in stitch-peek/Cargo.toml ($PR_VERSION) was not bumped. Please update the version before merging." echo "New version (PR): $NEW_VERSION"
if [ "$NEW_VERSION" = "$OLD_VERSION" ]; then
echo "Error: stitch-peek/Cargo.toml version has not been updated in this PR!"
exit 1 exit 1
else
echo "Success: Version updated from $OLD_VERSION to $NEW_VERSION"
fi fi
# Ensure the new version is actually newer (basic semver compare)
printf '%s\n%s' "$MAIN_VERSION" "$PR_VERSION" | sort -V | tail -1 | grep -qx "$PR_VERSION"
if [ $? -ne 0 ]; then
echo "::error::PR version ($PR_VERSION) is not newer than main ($MAIN_VERSION)."
exit 1
fi
echo "Version bump verified: $MAIN_VERSION -> $PR_VERSION"

View File

@@ -2,44 +2,67 @@ name: Release
on: on:
push: push:
branches: [main] branches:
- main
tags:
- 'v*'
jobs: jobs:
build-deb: build:
runs-on: linux-amd64 name: Build and Release
container: runs-on: ubuntu-latest
image: rust:1-bookworm
steps: steps:
- uses: actions/checkout@v4 - name: Checkout code
uses: actions/checkout@v4
- name: Cache cargo registry and build - name: Install Rust
uses: actions/cache@v3 uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
path: | toolchain: stable
~/.cargo/registry cache: false
~/.cargo/git
target
key: cargo-release-${{ hashFiles('**/Cargo.lock') }}
- name: Install packaging tools - name: Install packaging tools
run: apt-get update && apt-get install -y dpkg-dev run: sudo apt-get update && sudo apt-get install -y dpkg-dev
- name: Extract version - name: Get Version
id: version id: get_version
run: | run: |
VERSION=$(grep -m1 '^version' stitch-peek/Cargo.toml | sed 's/.*"\(.*\)"/\1/') VERSION=$(grep -m1 '^version =' stitch-peek/Cargo.toml | cut -d '"' -f 2)
echo "version=$VERSION" >> "$GITHUB_OUTPUT" echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
echo "Building version $VERSION" if [[ "${{ github.ref }}" == refs/tags/v* ]]; then
echo "TAG=${{ github.ref_name }}" >> $GITHUB_OUTPUT
else
echo "TAG=v$VERSION" >> $GITHUB_OUTPUT
fi
- name: Build release binary - name: Check if Release Exists
id: check_release
shell: bash
run: |
HTTP_STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/tags/${{ steps.get_version.outputs.TAG }}")
if [ "$HTTP_STATUS" = "200" ]; then
echo "EXISTS=true" >> $GITHUB_OUTPUT
echo "Release already exists for tag ${{ steps.get_version.outputs.TAG }}. Skipping."
else
echo "EXISTS=false" >> $GITHUB_OUTPUT
fi
- name: Build
if: steps.check_release.outputs.EXISTS == 'false'
run: cargo build --release -p stitch-peek run: cargo build --release -p stitch-peek
- name: Run tests - name: Test
run: cargo test --release if: steps.check_release.outputs.EXISTS == 'false'
run: cargo test
- name: Package .deb - name: Package .deb
if: steps.check_release.outputs.EXISTS == 'false'
env: env:
VERSION: ${{ steps.version.outputs.version }} VERSION: ${{ steps.get_version.outputs.VERSION }}
TAG: ${{ steps.get_version.outputs.TAG }}
run: | run: |
PKG="stitch-peek_${VERSION}_amd64" PKG="stitch-peek_${VERSION}_amd64"
@@ -53,7 +76,6 @@ jobs:
cp data/stitch-peek.thumbnailer "${PKG}/usr/share/thumbnailers/" cp data/stitch-peek.thumbnailer "${PKG}/usr/share/thumbnailers/"
cp data/pes.xml "${PKG}/usr/share/mime/packages/" cp data/pes.xml "${PKG}/usr/share/mime/packages/"
# Control file -- fields must start at column 0, continuation lines start with a space
printf '%s\n' \ printf '%s\n' \
"Package: stitch-peek" \ "Package: stitch-peek" \
"Version: ${VERSION}" \ "Version: ${VERSION}" \
@@ -70,26 +92,26 @@ jobs:
printf '#!/bin/sh\nset -e\nif command -v update-mime-database >/dev/null 2>&1; then\n update-mime-database /usr/share/mime\nfi\n' \ printf '#!/bin/sh\nset -e\nif command -v update-mime-database >/dev/null 2>&1; then\n update-mime-database /usr/share/mime\nfi\n' \
> "${PKG}/DEBIAN/postinst" > "${PKG}/DEBIAN/postinst"
chmod 755 "${PKG}/DEBIAN/postinst" chmod 755 "${PKG}/DEBIAN/postinst"
cp "${PKG}/DEBIAN/postinst" "${PKG}/DEBIAN/postrm" cp "${PKG}/DEBIAN/postinst" "${PKG}/DEBIAN/postrm"
chmod 755 "${PKG}/DEBIAN/postrm" chmod 755 "${PKG}/DEBIAN/postrm"
dpkg-deb --build "${PKG}" dpkg-deb --build "${PKG}"
echo "Built: ${PKG}.deb"
- name: Create git tag mv "${PKG}.deb" "stitch-peek-${TAG}-amd64.deb"
env: echo "Built: stitch-peek-${TAG}-amd64.deb"
VERSION: ${{ steps.version.outputs.version }}
run: |
git config user.name "Gitea CI"
git config user.email "ci@noreply.localhost"
git tag -a "v${VERSION}" -m "Release v${VERSION}"
git push origin "v${VERSION}"
- name: Create release - name: Create Release and Upload Asset
uses: actions/gitea-release@v1 if: steps.check_release.outputs.EXISTS == 'false'
uses: https://github.com/softprops/action-gh-release@v1
with: with:
token: ${{ secrets.RELEASE_TOKEN }} tag_name: ${{ steps.get_version.outputs.TAG }}
tag_name: v${{ steps.version.outputs.version }} name: Release ${{ steps.get_version.outputs.TAG }}
title: v${{ steps.version.outputs.version }} body: |
files: stitch-peek_${{ steps.version.outputs.version }}_amd64.deb Automated release for version ${{ steps.get_version.outputs.VERSION }}
Commit: ${{ github.sha }}
Branch: ${{ github.ref_name }}
files: stitch-peek-${{ steps.get_version.outputs.TAG }}-amd64.deb
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}