How do I actually use the encrypted Travis variable

I have successfully encrypted my variable with travis using, travis encrypt “secret_token” --add, I see it on the .travis.yml.

How do I actually use my newly encrypted travis variable?

Looks like you can also encrypt with this, travis encrypt --pro secretKey="secretVar" --add

In bash it would be the following:

firebase deploy --only functions --token=$secretKey

1 Like