File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
- name : CI/CD Workflow 🚀
1
+ name : CI/CD Workflow
2
2
3
3
on :
4
4
push :
30
30
echo "Mock testing..."
31
31
32
32
deploy-to-staging :
33
- name : Deploy to Staging
33
+ name : Deploy to Staging 🚧
34
34
needs : test
35
35
if : github.event_name == 'push' && github.ref_name == 'main'
36
36
concurrency : staging
40
40
secrets : inherit
41
41
42
42
deploy-to-production :
43
- name : Deploy to Production
43
+ name : Deploy to Production 🌟
44
44
needs : test
45
45
if : github.event_name == 'release'
46
46
concurrency : production
50
50
secrets : inherit
51
51
52
52
manual-deployment :
53
- name : Manual Deployment
53
+ name : Manual Deployment ❗️
54
54
needs : test
55
55
if : github.event_name == 'workflow_dispatch' && (success() || inputs.force == true)
56
56
concurrency : ${{ inputs.environment }}
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
deploy :
13
+ name : 🚀
13
14
runs-on : ubuntu-latest
14
15
environment : ${{ inputs.environment }}
15
16
You can’t perform that action at this time.
0 commit comments