From fb52ed422986481b9a70a1df59d67b67f20c2ae9 Mon Sep 17 00:00:00 2001 From: hiraeeth Date: Sat, 20 Jun 2026 02:58:04 +0300 Subject: [PATCH 1/2] Bump version to 1.0.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c59bada..ede8faf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,7 +205,7 @@ dependencies = [ [[package]] name = "docker-proxy" -version = "1.0.0" +version = "1.0.1" dependencies = [ "chrono", "dialoguer", diff --git a/Cargo.toml b/Cargo.toml index 6675855..a351452 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docker-proxy" -version = "1.0.0" +version = "1.0.1" edition = "2021" default-run = "docker-proxy" From ea3e81176123287c71766c1abd009ea08dbf9e5c Mon Sep 17 00:00:00 2001 From: hiraeeth Date: Sat, 20 Jun 2026 03:04:11 +0300 Subject: [PATCH 2/2] Include commit changelog in release notes The publish job now checks out full history and generates the release body from git log between the previous tag and the current one, with an install section and a full changelog compare link. --- .github/workflows/release.yml | 50 ++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a6a2c7..3e98f6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,6 +79,9 @@ jobs: steps: - name: resolve_tag run: echo "release_tag=${{ github.event.inputs.tag || github.ref_name }}" >> "$GITHUB_ENV" + - uses: actions/checkout@v4 + with: + fetch-depth: 0 - uses: actions/download-artifact@v4 with: path: dist @@ -98,12 +101,46 @@ jobs: gpg --batch --pinentry-mode loopback --passphrase "$gpg_passphrase" \ --armor --detach-sign --local-user "$key_id" \ -o SHA256SUMS.asc SHA256SUMS + - name: build_release_body + env: + repo: ${{ github.repository }} + run: | + current="$release_tag" + previous=$(git describe --tags --abbrev=0 "${current}^" 2>/dev/null || echo "") + { + echo "## install" + echo "" + echo '```bash' + echo "curl -fsSL https://raw.githubusercontent.com/${repo}/main/setup -o setup" + echo "sudo bash setup" + echo '```' + echo "" + echo "The installer downloads the matching binary for your platform, verifies it against \`SHA256SUMS\`, generates admin and readonly tokens into \`/etc/docker-proxy/config.yaml\`, and installs and starts the systemd service." + echo "" + echo "Linux builds are statically linked (musl). macOS builds: \`arm64\` for Apple Silicon, \`x86_64\` for Intel." + echo "" + echo "## changes" + echo "" + if [ -n "$previous" ]; then + git log --no-merges --pretty=format:'- %s (%h)' "${previous}..${current}" + else + git log --no-merges --pretty=format:'- %s (%h)' + fi + echo "" + if [ -n "$previous" ]; then + echo "" + echo "**full changelog:** https://github.com/${repo}/compare/${previous}...${current}" + fi + echo "" + echo "If \`SHA256SUMS.asc\` is attached, verify it with the project release signing key before trusting the checksums." + } > release_body.md - name: publish_release uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.release_tag }} name: ${{ env.release_tag }} fail_on_unmatched_files: false + body_path: release_body.md files: | dist/docker-proxy-linux-x86_64 dist/docker-proxy-linux-aarch64 @@ -111,16 +148,3 @@ jobs: dist/docker-proxy-macos-arm64 dist/SHA256SUMS dist/SHA256SUMS.asc - body: | - ## install - - ```bash - curl -fsSL https://raw.githubusercontent.com/Nemu-Bridge/docker-proxy/main/setup -o setup - sudo bash setup - ``` - - The installer downloads the matching binary for your platform, verifies it against `SHA256SUMS`, generates admin and readonly tokens into `/etc/docker-proxy/config.yaml`, and installs and starts the systemd service. - - Linux builds are statically linked (musl). macOS builds: `arm64` for Apple Silicon, `x86_64` for Intel. - - If `SHA256SUMS.asc` is attached, verify it with the project release signing key before trusting the checksums.