Skip to content

Commit d25ea9f

Browse files
authored
chore: Change publish step image (#964)
Changes the image used for the publish step to ubuntu:latest, so the CI dependencies script can install the required packages. Since we are now not using the curl Docker image for this step, curl must be added to the list of dependencies.
1 parent cfafe1f commit d25ea9f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

‎.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ steps:
255255
from_secret: updater-app-private-key
256256

257257
- name: publish plugin to grafana.com (release)
258-
image: curlimages/curl:7.73.0
258+
image: ubuntu:latest
259259
environment:
260260
GRAFANA_API_KEY:
261261
from_secret: signing_token

‎scripts/install-ci-deps-apt.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ apt-get update >/dev/null && apt-get install -y \
1313
make \
1414
wget \
1515
zip \
16+
curl \
1617
>/dev/null
1718

1819
wget -q https://github.com/cli/cli/releases/download/v${gh_version}/gh_${gh_version}_linux_amd64.deb

0 commit comments

Comments
 (0)