app-deploy-DEVELOP #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: App workflow DEVELOP | |
run-name: app-deploy-DEVELOP | |
on: | |
push: | |
branches: | |
- develop | |
- feat/* | |
pull_request: | |
branches: | |
- develop | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
### Makes a call to the workflow template defined to execute terraform, in this case the variables define the develop environment | |
Docker-build: | |
uses: danielrive/devoteam-load-generator/.github/workflows/service-build-push-template.yaml@develop | |
with: | |
ENVIRONMENT: 'develop' | |
PROJECT_NAME: 'load-generator' | |