How do I reference the deployment environment name in Github Actions workflow YAML? – Ubuntu
I would like to access the deployment environment name in my Github Actions workflow YAML. Here is an example: jobs: example: runs-on: ubuntu-latest environment: "foobarbaz" ... steps: ... - name: Terraform Check Format id: terraform-fmt # what should I use…