mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/boypt/openssh-deb.git
synced 2026-09-20 08:03:46 +08:00
🛠️ Fix Docker in Ubuntu 22.04(jammy) & Debian 11 (bullseye) & Debian 12 (bookworm) environment build error.
- Modify `Dockerfile`, when using above version OS to build package, here will raise an error:
````
dpkg-checkbuilddeps: error: Unmet build dependencies: dh-sequence-movetousr
````
This error **CAN NOT** be solved by using `apt install -y dh-sequence-movetousr` cause there is no such package named `dh-sequence-movetousr`
- Uncomment collect actions in `create-amd64-release.yml` and `create-arm64-release.yml`
This commit is contained in:
30
.github/workflows/create-amd64-release.yml
vendored
30
.github/workflows/create-amd64-release.yml
vendored
@@ -157,11 +157,11 @@ jobs:
|
||||
create_release:
|
||||
needs:
|
||||
- build_ubuntu24
|
||||
# - build_ubuntu22
|
||||
- build_ubuntu22
|
||||
- build_ubuntu20
|
||||
- build_debian13
|
||||
# - build_debian12
|
||||
# - build_debian11
|
||||
- build_debian12
|
||||
- build_debian11
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -171,10 +171,10 @@ jobs:
|
||||
name: ubuntu24-amd64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: ubuntu22-amd64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ubuntu22-amd64
|
||||
path: ./output
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
@@ -186,15 +186,15 @@ jobs:
|
||||
name: debian13-amd64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: debian12-amd64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: debian12-amd64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: debian11-amd64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: debian11-amd64
|
||||
path: ./output
|
||||
|
||||
- name: Get tag message
|
||||
run: |
|
||||
|
||||
31
.github/workflows/create-arm64-release.yml
vendored
31
.github/workflows/create-arm64-release.yml
vendored
@@ -193,11 +193,11 @@ jobs:
|
||||
create_release:
|
||||
needs:
|
||||
- build_ubuntu24
|
||||
# - build_ubuntu22
|
||||
- build_ubuntu22
|
||||
- build_ubuntu20
|
||||
- build_debian13
|
||||
# - build_debian12
|
||||
# - build_debian11
|
||||
- build_debian12
|
||||
- build_debian11
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -207,10 +207,10 @@ jobs:
|
||||
name: ubuntu24-arm64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: ubuntu22-arm64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ubuntu22-arm64
|
||||
path: ./output
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
@@ -222,15 +222,15 @@ jobs:
|
||||
name: debian13-arm64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: debian12-arm64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: debian12-arm64
|
||||
path: ./output
|
||||
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: debian11-arm64
|
||||
# path: ./output
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: debian11-arm64
|
||||
path: ./output
|
||||
|
||||
- name: Get tag message
|
||||
run: |
|
||||
@@ -246,4 +246,3 @@ jobs:
|
||||
bodyFile: ${{ github.workspace }}/RELEASE.md
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
allowUpdates: true
|
||||
|
||||
Reference in New Issue
Block a user