mirror of
https://github.com/3proxy/3proxy.git
synced 2026-06-03 06:50:11 +08:00
publish builds on release
This commit is contained in:
parent
34e9c453fa
commit
997671ee16
19
.github/workflows/build-rpm-arm64.yml
vendored
19
.github/workflows/build-rpm-arm64.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: RPM/DEB build aarch64
|
name: RPM/DEB build aarch64
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -45,11 +44,17 @@ jobs:
|
|||||||
rpmbuild -ba 3proxy-$RELEASE.spec
|
rpmbuild -ba 3proxy-$RELEASE.spec
|
||||||
cd $ret
|
cd $ret
|
||||||
mv ~/rpmbuild/RPMS/aarch64/3proxy-$RELEASE-1.aarch64.rpm 3proxy-$RELEASE.arm64.rpm
|
mv ~/rpmbuild/RPMS/aarch64/3proxy-$RELEASE-1.aarch64.rpm 3proxy-$RELEASE.arm64.rpm
|
||||||
- name: Get artifact arp
|
- name: Get artifact rpm
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-arm64.rpm"
|
name: "3proxy-${{ env.RELEASE }}-arm64.rpm"
|
||||||
path: "*.rpm"
|
path: "*.rpm"
|
||||||
|
- name: Upload rpm to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.arm64.rpm
|
||||||
- name: debbuild
|
- name: debbuild
|
||||||
run: |
|
run: |
|
||||||
ret=`pwd`
|
ret=`pwd`
|
||||||
@ -70,3 +75,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-arm64.deb"
|
name: "3proxy-${{ env.RELEASE }}-arm64.deb"
|
||||||
path: "*.deb"
|
path: "*.deb"
|
||||||
|
- name: Upload deb to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.arm64.deb
|
||||||
|
|||||||
19
.github/workflows/build-rpm-armhf.yml
vendored
19
.github/workflows/build-rpm-armhf.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: RPM/DEB build armhf
|
name: RPM/DEB build armhf
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -72,11 +71,17 @@ jobs:
|
|||||||
rpmbuild -ba --define "PAMLIB pam0g" --define "_arch arm" --define "cross yes" --target=arm-linux-gnueabi 3proxy-$RELEASE.spec
|
rpmbuild -ba --define "PAMLIB pam0g" --define "_arch arm" --define "cross yes" --target=arm-linux-gnueabi 3proxy-$RELEASE.spec
|
||||||
cd $ret
|
cd $ret
|
||||||
mv ~/rpmbuild/RPMS/arm/3proxy-$RELEASE-1.arm.rpm 3proxy-$RELEASE.arm.rpm
|
mv ~/rpmbuild/RPMS/arm/3proxy-$RELEASE-1.arm.rpm 3proxy-$RELEASE.arm.rpm
|
||||||
- name: Get artifact
|
- name: Get artifact rpm
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-arm.rpm"
|
name: "3proxy-${{ env.RELEASE }}-arm.rpm"
|
||||||
path: "*.rpm"
|
path: "*.rpm"
|
||||||
|
- name: Upload rpm to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.arm.rpm
|
||||||
- name: debbuild
|
- name: debbuild
|
||||||
run: |
|
run: |
|
||||||
ret=`pwd`
|
ret=`pwd`
|
||||||
@ -103,3 +108,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-arm.deb"
|
name: "3proxy-${{ env.RELEASE }}-arm.deb"
|
||||||
path: "*.deb"
|
path: "*.deb"
|
||||||
|
- name: Upload deb to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.arm.deb
|
||||||
|
|||||||
17
.github/workflows/build-rpm-x86-64.yml
vendored
17
.github/workflows/build-rpm-x86-64.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: RPM/DEB build x86-64
|
name: RPM/DEB build x86-64
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -50,6 +49,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-x86_64.rpm"
|
name: "3proxy-${{ env.RELEASE }}-x86_64.rpm"
|
||||||
path: "*.rpm"
|
path: "*.rpm"
|
||||||
|
- name: Upload rpm to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.x86_64.rpm
|
||||||
- name: debbuild
|
- name: debbuild
|
||||||
run: |
|
run: |
|
||||||
ret=`pwd`
|
ret=`pwd`
|
||||||
@ -70,4 +75,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-x86_64.deb"
|
name: "3proxy-${{ env.RELEASE }}-x86_64.deb"
|
||||||
path: "*.deb"
|
path: "*.deb"
|
||||||
|
- name: Upload deb to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}.x86_64.deb
|
||||||
|
|
||||||
|
|||||||
15
.github/workflows/build-watcom.yml
vendored
15
.github/workflows/build-watcom.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: Build Win32 3proxy-lite with Watcom
|
name: Build Win32 3proxy-lite with Watcom
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -80,3 +79,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-lite"
|
name: "3proxy-${{ env.RELEASE }}-lite"
|
||||||
path: dist/
|
path: dist/
|
||||||
|
- name: Create zip
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
shell: pwsh
|
||||||
|
run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-lite.zip
|
||||||
|
- name: Upload to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}-lite.zip
|
||||||
|
|||||||
15
.github/workflows/build-win32.yml
vendored
15
.github/workflows/build-win32.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: Build Win32 3proxy with MSVC
|
name: Build Win32 3proxy with MSVC
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -86,3 +85,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}"
|
name: "3proxy-${{ env.RELEASE }}"
|
||||||
path: dist/
|
path: dist/
|
||||||
|
- name: Create zip
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
shell: pwsh
|
||||||
|
run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-x86.zip
|
||||||
|
- name: Upload to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}-x86.zip
|
||||||
|
|||||||
15
.github/workflows/build-win64.yml
vendored
15
.github/workflows/build-win64.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: Build Win64 3proxy with MSVC
|
name: Build Win64 3proxy with MSVC
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -87,3 +86,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-x64"
|
name: "3proxy-${{ env.RELEASE }}-x64"
|
||||||
path: dist/
|
path: dist/
|
||||||
|
- name: Create zip
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
shell: pwsh
|
||||||
|
run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-x64.zip
|
||||||
|
- name: Upload to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}-x64.zip
|
||||||
|
|||||||
15
.github/workflows/build-winarm64.yml
vendored
15
.github/workflows/build-winarm64.yml
vendored
@ -1,9 +1,8 @@
|
|||||||
name: Build Win-arm64 3proxy with MSVC
|
name: Build Win-arm64 3proxy with MSVC
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
paths:
|
types: [published]
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -86,3 +85,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: "3proxy-${{ env.RELEASE }}-arm64"
|
name: "3proxy-${{ env.RELEASE }}-arm64"
|
||||||
path: dist/
|
path: dist/
|
||||||
|
- name: Create zip
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
shell: pwsh
|
||||||
|
run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-arm64.zip
|
||||||
|
- name: Upload to release
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
TAG: ${{ github.event.release.tag_name }}
|
||||||
|
run: gh release upload "$TAG" 3proxy-${{ env.RELEASE }}-arm64.zip
|
||||||
|
|||||||
22
.github/workflows/docker-ghcr.yml
vendored
22
.github/workflows/docker-ghcr.yml
vendored
@ -1,10 +1,8 @@
|
|||||||
name: Build Docker images (GHCR)
|
name: Build Docker images (GHCR)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
branches: [master]
|
types: [published]
|
||||||
paths:
|
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
@ -25,19 +23,20 @@ jobs:
|
|||||||
- name: Determine tags
|
- name: Determine tags
|
||||||
id: tags
|
id: tags
|
||||||
env:
|
env:
|
||||||
REF: ${{ github.ref }}
|
RELEASE_TAG: ${{ github.event.release.tag_name }}
|
||||||
IMAGE: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
IMAGE: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
run: |
|
run: |
|
||||||
if [[ "$REF" == refs/tags/* ]]; then
|
if [[ "$RELEASE_TAG" != "" ]]; then
|
||||||
RELEASE=$(cat RELEASE)
|
RELEASE="${RELEASE_TAG#v}"
|
||||||
echo "minimal=${IMAGE}:${RELEASE}.minimal,${IMAGE}:minimal" >> "$GITHUB_OUTPUT"
|
echo "minimal=${IMAGE}:${RELEASE}.minimal,${IMAGE}:minimal" >> "$GITHUB_OUTPUT"
|
||||||
echo "busybox=${IMAGE}:${RELEASE}.busybox,${IMAGE}:busybox" >> "$GITHUB_OUTPUT"
|
echo "busybox=${IMAGE}:${RELEASE}.busybox,${IMAGE}:busybox" >> "$GITHUB_OUTPUT"
|
||||||
echo "full=${IMAGE}:${RELEASE},${IMAGE}:latest" >> "$GITHUB_OUTPUT"
|
echo "full=${IMAGE}:${RELEASE},${IMAGE}:latest" >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
DATETIME=$(date +%d%m%y%H%M%S)
|
DATETIME=$(date +%d%m%y%H%M%S)
|
||||||
echo "minimal=${IMAGE}:${DATETIME}-devel.minimal,${IMAGE}:devel.minimal" >> "$GITHUB_OUTPUT"
|
BRANCH=$(echo "${GITHUB_REF#refs/heads/}" | tr "/" "-")
|
||||||
echo "busybox=${IMAGE}:${DATETIME}-devel.busybox,${IMAGE}:devel.busybox" >> "$GITHUB_OUTPUT"
|
echo "minimal=${IMAGE}:${DATETIME}-${BRANCH}.minimal,${IMAGE}:${BRANCH}.minimal" >> "$GITHUB_OUTPUT"
|
||||||
echo "full=${IMAGE}:${DATETIME}-devel,${IMAGE}:devel" >> "$GITHUB_OUTPUT"
|
echo "busybox=${IMAGE}:${DATETIME}-${BRANCH}.busybox,${IMAGE}:${BRANCH}.busybox" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "full=${IMAGE}:${DATETIME}-${BRANCH},${IMAGE}:${BRANCH}" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
@ -61,7 +60,6 @@ jobs:
|
|||||||
file: Dockerfile.minimal
|
file: Dockerfile.minimal
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.minimal }}
|
tags: ${{ steps.tags.outputs.minimal }}
|
||||||
|
|
||||||
- name: Build and push busybox
|
- name: Build and push busybox
|
||||||
@ -71,7 +69,6 @@ jobs:
|
|||||||
file: Dockerfile.busybox
|
file: Dockerfile.busybox
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.busybox }}
|
tags: ${{ steps.tags.outputs.busybox }}
|
||||||
|
|
||||||
- name: Build and push full
|
- name: Build and push full
|
||||||
@ -81,7 +78,6 @@ jobs:
|
|||||||
file: Dockerfile.full
|
file: Dockerfile.full
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.full }}
|
tags: ${{ steps.tags.outputs.full }}
|
||||||
|
|
||||||
- name: Delete untagged GHCR images
|
- name: Delete untagged GHCR images
|
||||||
|
|||||||
22
.github/workflows/docker.yml
vendored
22
.github/workflows/docker.yml
vendored
@ -1,10 +1,8 @@
|
|||||||
name: Build Docker images (Docker Hub)
|
name: Build Docker images (Docker Hub)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
branches: [master]
|
types: [published]
|
||||||
paths:
|
|
||||||
- 'RELEASE'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
@ -24,18 +22,19 @@ jobs:
|
|||||||
- name: Determine tags
|
- name: Determine tags
|
||||||
id: tags
|
id: tags
|
||||||
env:
|
env:
|
||||||
REF: ${{ github.ref }}
|
RELEASE_TAG: ${{ github.event.release.tag_name }}
|
||||||
run: |
|
run: |
|
||||||
if [[ "$REF" == refs/tags/* ]]; then
|
if [[ "$RELEASE_TAG" != "" ]]; then
|
||||||
RELEASE=$(cat RELEASE)
|
RELEASE="${RELEASE_TAG#v}"
|
||||||
echo "minimal=${REGISTRY}/${IMAGE_NAME}:${RELEASE}.minimal,${REGISTRY}/${IMAGE_NAME}:minimal" >> "$GITHUB_OUTPUT"
|
echo "minimal=${REGISTRY}/${IMAGE_NAME}:${RELEASE}.minimal,${REGISTRY}/${IMAGE_NAME}:minimal" >> "$GITHUB_OUTPUT"
|
||||||
echo "busybox=${REGISTRY}/${IMAGE_NAME}:${RELEASE}.busybox,${REGISTRY}/${IMAGE_NAME}:busybox" >> "$GITHUB_OUTPUT"
|
echo "busybox=${REGISTRY}/${IMAGE_NAME}:${RELEASE}.busybox,${REGISTRY}/${IMAGE_NAME}:busybox" >> "$GITHUB_OUTPUT"
|
||||||
echo "full=${REGISTRY}/${IMAGE_NAME}:${RELEASE},${REGISTRY}/${IMAGE_NAME}:latest" >> "$GITHUB_OUTPUT"
|
echo "full=${REGISTRY}/${IMAGE_NAME}:${RELEASE},${REGISTRY}/${IMAGE_NAME}:latest" >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
DATETIME=$(date +%d%m%y%H%M%S)
|
DATETIME=$(date +%d%m%y%H%M%S)
|
||||||
echo "minimal=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-devel.minimal,${REGISTRY}/${IMAGE_NAME}:devel.minimal" >> "$GITHUB_OUTPUT"
|
BRANCH=$(echo "${GITHUB_REF#refs/heads/}" | tr "/" "-")
|
||||||
echo "busybox=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-devel.busybox,${REGISTRY}/${IMAGE_NAME}:devel.busybox" >> "$GITHUB_OUTPUT"
|
echo "minimal=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-${BRANCH}.minimal,${REGISTRY}/${IMAGE_NAME}:${BRANCH}.minimal" >> "$GITHUB_OUTPUT"
|
||||||
echo "full=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-devel,${REGISTRY}/${IMAGE_NAME}:devel" >> "$GITHUB_OUTPUT"
|
echo "busybox=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-${BRANCH}.busybox,${REGISTRY}/${IMAGE_NAME}:${BRANCH}.busybox" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "full=${REGISTRY}/${IMAGE_NAME}:${DATETIME}-${BRANCH},${REGISTRY}/${IMAGE_NAME}:${BRANCH}" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
@ -58,7 +57,6 @@ jobs:
|
|||||||
file: Dockerfile.minimal
|
file: Dockerfile.minimal
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.minimal }}
|
tags: ${{ steps.tags.outputs.minimal }}
|
||||||
|
|
||||||
- name: Build and push busybox
|
- name: Build and push busybox
|
||||||
@ -68,7 +66,6 @@ jobs:
|
|||||||
file: Dockerfile.busybox
|
file: Dockerfile.busybox
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.busybox }}
|
tags: ${{ steps.tags.outputs.busybox }}
|
||||||
|
|
||||||
- name: Build and push full
|
- name: Build and push full
|
||||||
@ -78,5 +75,4 @@ jobs:
|
|||||||
file: Dockerfile.full
|
file: Dockerfile.full
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
no-cache: true
|
|
||||||
tags: ${{ steps.tags.outputs.full }}
|
tags: ${{ steps.tags.outputs.full }}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user