From a4891c51a1379ae87304e37a854ee1742448140c Mon Sep 17 00:00:00 2001 From: xuechen Date: Tue, 25 Jun 2024 22:38:49 +0800 Subject: [PATCH 1/5] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c890050..48c259e 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: v7.${{ env.minor }}.${{ env.patch }} + name: v8.${{ env.minor }}.${{ env.patch }} path: /home/runner/work/_temp/_github_home/nginx.deb - name: Update if: ${{ env.change }} @@ -33,5 +33,5 @@ jobs: with: files: /home/runner/work/_temp/_github_home/nginx.deb body: "SHA256: ${{ env.hash }}" - tag_name: v7.${{ env.minor }}.${{ env.patch }} + tag_name: v8.${{ env.minor }}.${{ env.patch }} generate_release_notes: false From 6324892d3192477fd547cc5df7d0ab8f80cff6cc Mon Sep 17 00:00:00 2001 From: xuechen Date: Tue, 25 Jun 2024 22:39:09 +0800 Subject: [PATCH 2/5] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0a00ff9..51c94de 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,5 +18,5 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: v7.${{ env.minor }}.${{ env.patch }} + name: v8.${{ env.minor }}.${{ env.patch }} path: /home/runner/work/_temp/_github_home/nginx.deb From 48e1865db5ef361737595a101d54ee009f77bd47 Mon Sep 17 00:00:00 2001 From: xuechen Date: Tue, 25 Jun 2024 22:39:19 +0800 Subject: [PATCH 3/5] Update minor --- minor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minor b/minor index d00491f..3a2e3f4 100755 --- a/minor +++ b/minor @@ -1 +1 @@ -1 +-1 From 6cf6ceb8b70f5d02f8ba90959b12fa6ab8e5a8c2 Mon Sep 17 00:00:00 2001 From: xuechen Date: Tue, 25 Jun 2024 22:43:24 +0800 Subject: [PATCH 4/5] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2bc7ffa..5115012 100755 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ According to [Debian Wiki](https://wiki.debian.org/DebianReleases), Debian bullseye will reach its end-of-life date in July 2024. Therefore, the project will switch to Debian bookworm as the packaging environment in June 2024. +**Update:** already switched on June 25th. + ## Table of Contents - [Features](#features) @@ -61,11 +63,11 @@ For example, if you want to add `http_scgi_module` back, you need to remove `--h ## Use in another distribution -Fork this repo, enable GitHub Actions, edit `Dockerfile` and `build.sh`, and change `bullseye` to the one you like. Then wait for GitHub Actions to run. After it finishes, you can download from releases. +Fork this repo, enable GitHub Actions, edit `Dockerfile` and `build.sh`, and change `bookworm` to the one you like. Then wait for GitHub Actions to run. After it finishes, you can download from releases. -For example, if you want to use in Debian buster, you need to change `bullseye` to `buster`. +For example, if you want to use in Debian bullseye, you need to change `bookworm` to `bullseye`. -Note: if you are using newer version of Debian (e.g. Debian bookworm or unstable), you can simply use releases from this repo as Debian is backward compatible. +Note: if you are using newer version of Debian (e.g. Debian trixie or unstable), you can still use releases for Debian bookworm as Debian is backward compatible. ## Recommended NGINX config From e383258cdb006418e2d56edf7aa8d4482521dd19 Mon Sep 17 00:00:00 2001 From: xuechen Date: Tue, 25 Jun 2024 22:44:11 +0800 Subject: [PATCH 5/5] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f88559b..bb08d89 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ -FROM debian:bullseye +FROM debian:bookworm COPY build.sh /build.sh ENTRYPOINT ["bash", "/build.sh"]