Skip to content

Commit b48e1d6

Browse files
committed
cleanup
1 parent 998d539 commit b48e1d6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/docs-build-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: make build-flex-manual
5252
- name: Deploy Flex Manual to Sandbox
5353
working-directory: ./docs
54-
run: make deploy_flex_manual_sandbox
54+
run: make deploy_sandbox
5555
- name: Output URL to Summary
5656
run: |
5757
echo "## Flex Manual deployed to sandbox" >> $GITHUB_STEP_SUMMARY
@@ -87,7 +87,7 @@ jobs:
8787
run: make build-flex-manual
8888
- name: Deploy Flex Manual to Staging
8989
working-directory: ./docs
90-
run: make deploy_flex_manual_staging
90+
run: make deploy_staging
9191
- name: Output URL to Summary
9292
run: |
9393
echo "## Flex Manual deployed to staging" >> $GITHUB_STEP_SUMMARY
@@ -123,7 +123,7 @@ jobs:
123123
run: make build-flex-manual
124124
- name: Deploy Flex Manual to Production
125125
working-directory: ./docs
126-
run: make deploy_flex_manual_production
126+
run: make deploy_production
127127
- name: Output URL to Summary
128128
run: |
129129
echo "## Flex Manual deployed to production" >> $GITHUB_STEP_SUMMARY

docs/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ serve-flex-manual:
1414
build-flex-manual:
1515
uv run mkdocs build -f $(FLEX_MANUAL_PREFIX)/mkdocs.yml
1616

17-
.PHONY: deploy_flex_manual_sandbox
18-
deploy_flex_manual_production:
17+
.PHONY: deploy_sandbox
18+
deploy_sandbox:
1919
python deploy_flex_manual.py sandbox --branch ${{ env.BRANCH }}
2020

21-
.PHONY: deploy_flex_manual_staging
22-
deploy_flex_manual_production:
21+
.PHONY: deploy_staging
22+
deploy_staging:
2323
python deploy_flex_manual.py staging --branch ${{ env.BRANCH }}
2424

25-
.PHONY: deploy_flex_manual_production
26-
deploy_flex_manual_production:
25+
.PHONY: deploy_production
26+
deploy_production:
2727
python deploy_flex_manual.py production --branch ${{ env.BRANCH }}

0 commit comments

Comments
 (0)