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
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
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 repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
|
||||||
- helm dependency build
|
- helm dependency build
|
||||||
|
|
||||||
|
@ -22,20 +22,20 @@ pipeline:
|
||||||
image: alpine:3.17.0
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
- apk add --no-cache helm
|
||||||
- helm lint
|
- helm lint
|
||||||
|
|
||||||
helm-template:
|
helm-template:
|
||||||
image: alpine:3.17.0
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
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 .
|
- helm template --debug gitea-helm .
|
||||||
|
|
||||||
verify-readme:
|
verify-readme:
|
||||||
image: alpine:3.17.0
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
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
|
- make readme
|
||||||
- git diff --exit-code --name-only README.md
|
- git diff --exit-code --name-only README.md
|
||||||
|
|
|
@ -13,8 +13,7 @@ pipeline:
|
||||||
image: alpine:3.17.0
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
- apk add --no-cache git nodejs npm helm
|
||||||
- apk add --no-cache git nodejs npm
|
|
||||||
- helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
|
- helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
|
||||||
- helm dependency build
|
- helm dependency build
|
||||||
- rm -rf tmp/
|
- rm -rf tmp/
|
||||||
|
@ -40,7 +39,7 @@ pipeline:
|
||||||
image: alpine:3.17.0
|
image: alpine:3.17.0
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
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
|
- 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
|
- helm push tmp/forgejo-${CI_COMMIT_TAG##v}.tgz oci://codeberg.org/forgejo-contrib
|
||||||
secrets:
|
secrets:
|
||||||
|
|
Loading…
Reference in a new issue