mirror of
https://github.com/nicolabs/nicobot.git
synced 2026-02-22 18:25:21 +01:00
Fixed : using the output of the prvious job to build the signal image
This commit is contained in:
parent
b30f00c036
commit
f865e9c4f6
4
.github/workflows/dockerhub.yml
vendored
4
.github/workflows/dockerhub.yml
vendored
|
|
@ -101,6 +101,8 @@ jobs:
|
||||||
name: Build, Publish debian
|
name: Build, Publish debian
|
||||||
environment: prod
|
environment: prod
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
digest: ${{ steps.docker_build_debian.outputs.digest }}
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
@ -250,7 +252,7 @@ jobs:
|
||||||
context: ./
|
context: ./
|
||||||
file: ./signal-debian.Dockerfile
|
file: ./signal-debian.Dockerfile
|
||||||
build-args: |
|
build-args: |
|
||||||
NICOBOT_BASE_IMAGE=${{ steps.docker_build_debian.outputs.digest }}
|
NICOBOT_BASE_IMAGE=${{ needs.build-publish-debian.outputs.digest }}
|
||||||
builder: ${{ steps.buildx.outputs.name }}
|
builder: ${{ steps.buildx.outputs.name }}
|
||||||
platforms: linux/arm/v7,linux/arm64,linux/386,linux/amd64
|
platforms: linux/arm/v7,linux/arm64,linux/386,linux/amd64
|
||||||
push: true
|
push: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue