Update .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Sthope 2023-08-28 18:57:44 +02:00
parent 40e051ef6e
commit b367a52741

View File

@ -3,9 +3,9 @@ name: release
steps: steps:
- name: create-script-file - name: create-script-file
image: node:14-alpine image: alpine:3.13
commands: 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 "const axios = require('axios');" > custom-script.js
- echo "" >> custom-script.js - echo "" >> custom-script.js
- echo "function getLatestReleaseTag() {" >> custom-script.js - echo "function getLatestReleaseTag() {" >> custom-script.js