From b367a52741fd22161aa994ddbfdc0e0b0aa488fe Mon Sep 17 00:00:00 2001 From: Sthope Date: Mon, 28 Aug 2023 18:57:44 +0200 Subject: [PATCH] Update .drone.yml --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9b254c1..06e7dfa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,9 +3,9 @@ name: release steps: - name: create-script-file - image: node:14-alpine + image: alpine:3.13 commands: - - apk add --no-cache npm # Install npm in Alpine Linux + - apk add --no-cache nodejs npm # Install Node.js and npm in Alpine Linux - echo "const axios = require('axios');" > custom-script.js - echo "" >> custom-script.js - echo "function getLatestReleaseTag() {" >> custom-script.js