We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214e606 commit 2d7c139Copy full SHA for 2d7c139
1 file changed
.github/workflows/deploy-prod.yaml
@@ -36,3 +36,11 @@ jobs:
36
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
37
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
38
AWS_DEFAULT_REGION: ${{ env.AWS_REGION }}
39
+
40
+ - name: Commit and push .prod-versions
41
+ run: |
42
+ git config --local user.email "action@github.com"
43
+ git config --local user.name "GitHub Action"
44
+ git add .prod-versions
45
+ git commit -m "Update production versions: ${{ github.event.inputs.deployTag || 'auto-detected' }}"
46
+ git push
0 commit comments