From 6fa80222a6d6a9a1e7bd52c2ea3a82a95fc7ff3b Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Tue, 8 Jun 2021 02:02:59 +0800 Subject: [PATCH] update to latest v of alpine --- .drone.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6840a4e..939bc69 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ platform: steps: - name: lint pull: always - image: alpine:3.12 + image: alpine:3.13 commands: - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm - helm lint @@ -42,14 +42,15 @@ trigger: steps: - name: generate-chart pull: always - image: alpine:3.12 + image: alpine:3.13 commands: - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm + - apk add --no-cache curl - helm dependency update - helm package --version "${DRONE_TAG##v}" ./ - mkdir gitea - mv gitea*.tgz gitea/ - - wget -O gitea/index.yaml https://dl.gitea.io/charts/index.yaml + - curl -L -o gitea/index.yaml https://dl.gitea.io/charts/index.yaml - helm repo index gitea/ --url https://dl.gitea.io/charts --merge gitea/index.yaml - name: upload-chart