Re: Dynamic Variables

2016-12-29 Thread Alex Sanford
Yes there is a typo. My bad! But that isn't the problem. Even with the correct sed syntax, the command isn't being run 😔 On Mon, Dec 26, 2016 at 15:30 Michael Cox wrote: > environment: > url: https://$(echo $CI_BUILD_REF_NAME | sed 's/_/-').herokuapp.com > > Typo? The sed regex should be > 's/_

Dynamic Variables

2016-12-26 Thread Michael Cox
environment: url: https://$(echo $CI_BUILD_REF_NAME | sed 's/_/-').herokuapp.com Typo? The sed regex should be 's/_/-/g' -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email

Dynamic Variables

2016-12-12 Thread Alex Sanford
by running the name through a regex and stripping out the invalid characters. But I can't seem to figure out how to create the environment URL properly. Is there a way to create dynamic variables in the YAML file, so I can create a variable, say "APP_NAME", and set it to a dynamic v