diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 493aae2..11d80ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,5 @@ jobs: docker run --privileged --rm tonistiigi/binfmt --install all podman manifest create build podman build --format docker --platform linux/amd64,linux/arm64,linux/arm/v7 --manifest localhost/build . - podman images podman manifest push localhost/build docker://docker.io/bbernhard/signal-cli-rest-api:${EPOCHSECONDS}-ci diff --git a/.github/workflows/release-dev-version.yml b/.github/workflows/release-dev-version.yml index 9c63f48..6dd7eca 100644 --- a/.github/workflows/release-dev-version.yml +++ b/.github/workflows/release-dev-version.yml @@ -39,4 +39,6 @@ jobs: echo "Start dev build" docker run --privileged --rm tonistiigi/binfmt --install all podman manifest create build - podman build --format docker --build-arg BUILD_VERSION_ARG=${VERSION} --manifest localhost/build --platform linux/amd64,linux/arm64,linux/arm/v7 -t bbernhard/signal-cli-rest-api:${VERSION}-dev -t bbernhard/signal-cli-rest-api:latest-dev . --push + podman build --format docker --build-arg BUILD_VERSION_ARG=${VERSION} --manifest localhost/build --platform linux/amd64,linux/arm64,linux/arm/v7 . + podman manifest push localhost/build docker://docker.io/bbernhard/signal-cli-rest-api:${VERSION}-dev + podman manifest push localhost/build docker://docker.io/bbernhard/signal-cli-rest-api:latest-dev diff --git a/.github/workflows/release-productive-version.yml b/.github/workflows/release-productive-version.yml index 0fc8584..5d24bfd 100644 --- a/.github/workflows/release-productive-version.yml +++ b/.github/workflows/release-productive-version.yml @@ -39,4 +39,6 @@ jobs: echo "Start productive build" docker run --privileged --rm tonistiigi/binfmt --install all podman manifest create build - podman build --build-arg BUILD_VERSION_ARG=${VERSION} --manifest localhost/build --platform linux/amd64,linux/arm64,linux/arm/v7 -t bbernhard/signal-cli-rest-api:${VERSION} -t bbernhard/signal-cli-rest-api:latest . --push + podman build --format docker --build-arg BUILD_VERSION_ARG=${VERSION} --manifest localhost/build --platform linux/amd64,linux/arm64,linux/arm/v7 . + podman manifest push localhost/build docker://docker.io/bbernhard/signal-cli-rest-api:${VERSION} + podman manifest push localhost/build docker://docker.io/bbernhard/signal-cli-rest-api:latest