File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 51
51
run : make build-flex-manual
52
52
- name : Deploy Flex Manual to Sandbox
53
53
working-directory : ./docs
54
- run : make deploy_flex_manual_sandbox
54
+ run : make deploy_sandbox
55
55
- name : Output URL to Summary
56
56
run : |
57
57
echo "## Flex Manual deployed to sandbox" >> $GITHUB_STEP_SUMMARY
87
87
run : make build-flex-manual
88
88
- name : Deploy Flex Manual to Staging
89
89
working-directory : ./docs
90
- run : make deploy_flex_manual_staging
90
+ run : make deploy_staging
91
91
- name : Output URL to Summary
92
92
run : |
93
93
echo "## Flex Manual deployed to staging" >> $GITHUB_STEP_SUMMARY
@@ -123,7 +123,7 @@ jobs:
123
123
run : make build-flex-manual
124
124
- name : Deploy Flex Manual to Production
125
125
working-directory : ./docs
126
- run : make deploy_flex_manual_production
126
+ run : make deploy_production
127
127
- name : Output URL to Summary
128
128
run : |
129
129
echo "## Flex Manual deployed to production" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ serve-flex-manual:
14
14
build-flex-manual :
15
15
uv run mkdocs build -f $(FLEX_MANUAL_PREFIX ) /mkdocs.yml
16
16
17
- .PHONY : deploy_flex_manual_sandbox
18
- deploy_flex_manual_production :
17
+ .PHONY : deploy_sandbox
18
+ deploy_sandbox :
19
19
python deploy_flex_manual.py sandbox --branch ${{ env.BRANCH }}
20
20
21
- .PHONY : deploy_flex_manual_staging
22
- deploy_flex_manual_production :
21
+ .PHONY : deploy_staging
22
+ deploy_staging :
23
23
python deploy_flex_manual.py staging --branch ${{ env.BRANCH }}
24
24
25
- .PHONY : deploy_flex_manual_production
26
- deploy_flex_manual_production :
25
+ .PHONY : deploy_production
26
+ deploy_production :
27
27
python deploy_flex_manual.py production --branch ${{ env.BRANCH }}
You can’t perform that action at this time.
0 commit comments