ci: use stable alpine tools
This commit is contained in:
parent
6b1bed7d8e
commit
07db2bf08b
2 changed files with 6 additions and 7 deletions
|
@ -14,7 +14,7 @@ pipeline:
|
|||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
||||
- apk add --no-cache helm
|
||||
- helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
|
||||
- helm dependency build
|
||||
|
||||
|
@ -22,20 +22,20 @@ pipeline:
|
|||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
||||
- apk add --no-cache helm
|
||||
- helm lint
|
||||
|
||||
helm-template:
|
||||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
||||
- apk add --no-cache helm
|
||||
- helm template --debug gitea-helm .
|
||||
|
||||
verify-readme:
|
||||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing make nodejs npm git
|
||||
- apk add --no-cache make nodejs npm git
|
||||
- make readme
|
||||
- git diff --exit-code --name-only README.md
|
||||
|
|
|
@ -13,8 +13,7 @@ pipeline:
|
|||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
||||
- apk add --no-cache git nodejs npm
|
||||
- apk add --no-cache git nodejs npm helm
|
||||
- helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
|
||||
- helm dependency build
|
||||
- rm -rf tmp/
|
||||
|
@ -40,7 +39,7 @@ pipeline:
|
|||
image: alpine:3.17.0
|
||||
pull: true
|
||||
commands:
|
||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
||||
- apk add --no-cache helm
|
||||
- echo $${TOKEN} | helm registry login -u viceice --password-stdin codeberg.org/forgejo-contrib
|
||||
- helm push tmp/forgejo-${CI_COMMIT_TAG##v}.tgz oci://codeberg.org/forgejo-contrib
|
||||
secrets:
|
||||
|
|
Loading…
Reference in a new issue