diff options
author | silverwind <me@silverwind.io> | 2021-05-20 22:37:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 16:37:20 -0400 |
commit | 9b7d692e9ee2f42ab143854c2c0f63bb9371f1de (patch) | |
tree | a02789bf0bb9e4f2cfd231107a1f3fc13417c5f5 /.drone.yml | |
parent | 17be64549845a53f3954f0f2190c085affe7a13f (diff) | |
download | gitea-9b7d692e9ee2f42ab143854c2c0f63bb9371f1de.tar.gz gitea-9b7d692e9ee2f42ab143854c2c0f63bb9371f1de.zip |
Use node 16 on release tasks too (#15936)
Forgot these in https://github.com/go-gitea/gitea/pull/15804.
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 03a83c070f..004b53a2e9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -503,7 +503,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs + - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: @@ -599,7 +599,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.16.x commands: - - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs + - curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: |