Hello,
Drone seems to eat the variables if I use the ${VAR} syntax.
$VAR works fine.
Example:
pipeline:
test:
image: debian:stable-slim
commands:
- export MYVAR=test
- echo $MYVAR
- echo ${MYVAR}
Produces:
drone exec --local
[test:L0:0s] + export MYVAR=test
[test:L1:0s] + echo $MYVAR
[test:L2:0s] test
[test:L3:0s] + echo
[test:L4:0s]
Is this intended?
I’m using Drone 0.8.2