We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6dab85 commit 2084c39Copy full SHA for 2084c39
.drone.yml
@@ -44,7 +44,10 @@ steps:
44
image: techknowlogick/xgo:go-1.21.x
45
pull: always
46
commands:
47
- - curl -sL https://deb.nodesource.com/setup_20.x | bash - && apt-get -qqy install nodejs
+ - apt-get update && apt-get -qqy install ca-certificates curl gnupg
48
+ - mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
49
+ - echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" > /etc/apt/sources.list.d/nodesource.list
50
+ - apt-get update && apt-get -qqy install nodejs
51
- export PATH=$PATH:$GOPATH/bin
52
- make release
53
environment:
0 commit comments