Set environment variable during push for GitHub Actions

28 Views Asked by At

In GitLab CI I can set environment variables at push-time using -o flag:

git push -o ci.variable="MAX_RETRIES=10" -o ci.variable="MAX_TIME=600"

How can I do a similar thing for GitHub Actions?

0

There are 0 best solutions below