How do I use GitHub Actions envrionment variables in a job called with workflow_call – Ubuntu
I have 2 workflows: CI/CD and Deploy. Deploy can be triggered manually (with workflow_dispatch) or by CI/CD (with workflow_call). It uses an environment named "dev" that contains 2 secrets: AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY. The Deploy workflow is successful when called manually.…