fix: pass docker_username, docker_password to publish stage
This commit is contained in:
parent
5c722b47c6
commit
c8bbe73cd2
2 changed files with 11 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
---
|
---
|
||||||
variables:
|
variables:
|
||||||
- &repo 'git.schmidl.dev/schtobia/buildimage'
|
- &repo 'git.schmidl.dev/schtobia/buildimage'
|
||||||
|
@ -12,7 +13,10 @@ steps:
|
||||||
repo: *repo
|
repo: *repo
|
||||||
registry: git.schmidl.dev
|
registry: git.schmidl.dev
|
||||||
dry_run: true
|
dry_run: true
|
||||||
# output: type=oci,dest=${CI_REPO_OWNER}-buildimage.tar
|
when:
|
||||||
|
branch:
|
||||||
|
exclude: [ master ]
|
||||||
|
event: push
|
||||||
|
|
||||||
publish-next-agent:
|
publish-next-agent:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
@ -23,6 +27,10 @@ steps:
|
||||||
registry: git.schmidl.dev
|
registry: git.schmidl.dev
|
||||||
dockerfile: dockerfile
|
dockerfile: dockerfile
|
||||||
platforms: linux/amd64,linux/arm64/v8
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
when:
|
when:
|
||||||
branch: master
|
branch: master
|
||||||
event: push
|
event: push
|
||||||
|
|
|
@ -5,3 +5,5 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# buildimage
|
# buildimage
|
||||||
|
|
||||||
|
![pipeline status](https://ci.schmidl.dev/api/badges/3/status.svg?branch=master)
|
||||||
|
|
Loading…
Reference in a new issue