mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-20 17:52:35 +00:00
Small fix: Correctly pass secrets in Docker builds (#5905)
This commit is contained in:
3
.github/workflows/docker_build.yml
vendored
3
.github/workflows/docker_build.yml
vendored
@@ -4,6 +4,9 @@ name: Build Docker
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
DOCKER_FIRMWARE_TOKEN:
|
||||||
|
required: false # Only required for push
|
||||||
inputs:
|
inputs:
|
||||||
distro:
|
distro:
|
||||||
description: Distro to target
|
description: Distro to target
|
||||||
|
|||||||
9
.github/workflows/docker_manifest.yml
vendored
9
.github/workflows/docker_manifest.yml
vendored
@@ -2,6 +2,9 @@ name: Build Docker Multi-Arch Manifest
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
DOCKER_FIRMWARE_TOKEN:
|
||||||
|
required: true
|
||||||
inputs:
|
inputs:
|
||||||
release_channel:
|
release_channel:
|
||||||
description: Release channel to target
|
description: Release channel to target
|
||||||
@@ -20,6 +23,7 @@ jobs:
|
|||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-debian-arm64:
|
docker-debian-arm64:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/docker_build.yml
|
||||||
@@ -28,6 +32,7 @@ jobs:
|
|||||||
platform: linux/arm64
|
platform: linux/arm64
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-debian-armv7:
|
docker-debian-armv7:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/docker_build.yml
|
||||||
@@ -36,6 +41,7 @@ jobs:
|
|||||||
platform: linux/arm/v7
|
platform: linux/arm/v7
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-alpine-amd64:
|
docker-alpine-amd64:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/docker_build.yml
|
||||||
@@ -44,6 +50,7 @@ jobs:
|
|||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-alpine-arm64:
|
docker-alpine-arm64:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/docker_build.yml
|
||||||
@@ -52,6 +59,7 @@ jobs:
|
|||||||
platform: linux/arm64
|
platform: linux/arm64
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-alpine-armv7:
|
docker-alpine-armv7:
|
||||||
uses: ./.github/workflows/docker_build.yml
|
uses: ./.github/workflows/docker_build.yml
|
||||||
@@ -60,6 +68,7 @@ jobs:
|
|||||||
platform: linux/arm/v7
|
platform: linux/arm/v7
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
push: true
|
push: true
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
docker-manifest:
|
docker-manifest:
|
||||||
needs:
|
needs:
|
||||||
|
|||||||
Reference in New Issue
Block a user