24 lines
381 B
YAML
24 lines
381 B
YAML
kind: pipeline
|
|
name: publish
|
|
type: docker
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: step1
|
|
image: alpine
|
|
commands:
|
|
- ls
|
|
- find build-tools
|
|
- find charts
|
|
- echo $SHELL
|
|
- ./build-tools/upload-new-versions.sh
|
|
environment:
|
|
GITEA_PASSWORD:
|
|
from_secret: gitea_password
|
|
|
|
image_pull_secrets:
|
|
- dockerconfigjson
|