We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b88c25e + 1088d56 commit c7f4587Copy full SHA for c7f4587
.github/workflows/base-deploy.yml
@@ -141,6 +141,12 @@ jobs:
141
echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=api-layer tf-command=apply"
142
make terraform env=$ENVIRONMENT stack=api-layer tf-command=apply workspace=$WORKSPACE
143
144
+ - name: "Set up git identity"
145
+ if: ${{ needs.metadata.outputs.environment == 'preprod' || needs.metadata.outputs.environment == 'prod' }}
146
+ run: |
147
+ git config user.name "github-actions"
148
+ git config user.email "[email protected]"
149
+
150
# ---------- Preprod path: create RC tag + pre-release ----------
151
- name: "Create/Push RC tag for preprod"
152
if: ${{ needs.metadata.outputs.environment == 'preprod' }}
0 commit comments