We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c38feba commit 88a67beCopy full SHA for 88a67be
.github/workflows/ci.yml
@@ -92,15 +92,25 @@ jobs:
92
# -------------------------------
93
# 5. DEPLOY STAGE (MANUAL APPROVAL)
94
95
- deploy:
+ deploy1:
96
runs-on: ubuntu-latest
97
needs: allure-report
98
99
# 👇 Requires manual approval
100
environment:
101
- name: production
+ name: development
102
url: https://example.com
103
104
+
105
+ deploy:
106
+ needs: deploy1, allure-report
107
+ runs-on: ubuntu-latest
108
109
+ # 👇 Requires manual approval
110
+ environment:
111
+ name: production
112
+ url: https://example.com
113
114
steps:
115
- name: Deployment Placeholder
116
run: echo "Deployment step after Allure report"
0 commit comments