mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/boypt/openssh-deb.git
synced 2026-09-20 08:03:46 +08:00
build w/o custom image
This commit is contained in:
6
.github/workflows/build-images.yml
vendored
6
.github/workflows/build-images.yml
vendored
@@ -4,12 +4,6 @@ name: Build Docker Images
|
||||
|
||||
# Controls when the workflow will run
|
||||
on:
|
||||
# Triggers the workflow on push or pull request events but only for the "main" branch
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
14
.github/workflows/create-amd64-release.yml
vendored
14
.github/workflows/create-amd64-release.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 24.04 (noble) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu24
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ubuntu:24.04
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 22.04 (jammy) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu22
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ubuntu:22.04
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -72,7 +72,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 20.04 (focal) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu20
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ubuntu:20.04
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -95,7 +95,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 18.04 (bionic) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu18
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ubuntu:18.04
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -118,7 +118,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 13 (trixie) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian13
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output debian:trixie
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -142,7 +142,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 12 (bookworm) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian12
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output debian:bookworm
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -166,7 +166,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 11 (bullseye) [amd64]"
|
||||
run: |
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian11
|
||||
docker run --rm -v ${{ github.workspace }}/output:/data/output debian:bullseye
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
|
||||
14
.github/workflows/create-arm64-release.yml
vendored
14
.github/workflows/create-arm64-release.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 24.04 (noble) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu24
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:ubuntu24
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -61,7 +61,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 22.04 (jammy) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu22
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:ubuntu22
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -90,7 +90,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 20.04 (focal) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu20
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:ubuntu20
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -119,7 +119,7 @@ jobs:
|
||||
|
||||
- name: "Compile Ubuntu 18.04 (bionic) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:ubuntu18
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:ubuntu18
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -148,7 +148,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 13 (trixie) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian13
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:debian13
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -178,7 +178,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 12 (bookworm) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian12
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:debian12
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
@@ -208,7 +208,7 @@ jobs:
|
||||
|
||||
- name: "Compile Debian 11 (bullseye) [arm64]"
|
||||
run: |
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:debian11
|
||||
docker run --rm --platform linux/arm64 -v ${{ github.workspace }}/output:/data/output __:debian11
|
||||
sudo apt install -y rename
|
||||
source ${{ github.workspace }}/version.env
|
||||
pushd ${{ github.workspace }}/output
|
||||
|
||||
Reference in New Issue
Block a user