I have gitlab runners for my laravel project. I want to deploy in a directory, name of it will consist of date and time joined with “_” for what i want run
echo `date +"%d_%m_%Y_%H_%M"`.
What i should put in the variable value?
I now have:
variables:
SSH_PRIVATE_KEY: $SSH_PRIVATE_KEY
CURRENT_ID: echo `date +"%d_%m_%Y_%H_%M"`
But it just outputs this text.