Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:

- name: Build api7ee-runtime deb
run: |
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bookworm-slim arch=${{ matrix.platform.build_arch }}

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
name: api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Build api7ee-runtime deb
run: |
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bookworm-slim arch=${{ matrix.platform.build_arch }}

- uses: mukunku/[email protected]
id: check-tag
Expand All @@ -64,6 +64,6 @@ jobs:
body: |
Release api7ee-runtime ${{ env.version }}
files: |
./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
./output/api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.2.3
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.api7ee-runtime.deb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG IMAGE_BASE="debian"
ARG IMAGE_TAG="bullseye-slim"
ARG IMAGE_TAG="bookworm-slim"

FROM ${IMAGE_BASE}:${IMAGE_TAG} as build

Expand Down
2 changes: 1 addition & 1 deletion test/apisix/Dockerfile.test.apisix.deb.ubuntu20.04
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -x \
&& wget -O - https://openresty.org/package/pubkey.gpg | apt-key add - \
&& wget -O - http://repos.apiseven.com/pubkey.gpg | apt-key add - \
&& echo "deb http://openresty.org/package/${arch_path}ubuntu $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/openresty.list \
&& echo "deb http://repos.apiseven.com/packages/debian bullseye main" | tee /etc/apt/sources.list.d/apisix.list \
&& echo "deb http://repos.apiseven.com/packages/debian bookworm main" | tee /etc/apt/sources.list.d/apisix.list \
&& DEBIAN_FRONTEND=noninteractive apt-get update

# install etcd
Expand Down