File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 38
38
working-directory : tech-docs/build
39
39
- uses : actions/upload-artifact@v4
40
40
with :
41
- path : tech-docs/build
41
+ name : documentation
42
+ path : tech-docs/build/
43
+
44
+ deploy :
45
+ runs-on : ubuntu-latest
46
+ if : github.ref_name == 'main' || (github.event_name == 'workflow_dispatch')
47
+ needs :
48
+ - build
49
+ steps :
50
+ - uses : actions/checkout@v4
51
+ - uses : actions/download-artifact@v4
52
+ with :
53
+ name : documentation
54
+ - name : debug
55
+ run : |
56
+ ls -la
57
+ ls -laR documentation
58
+
59
+ - name : Deploy
60
+ uses : JamesIves/github-pages-deploy-action@920cbb300dcd3f0568dbc42700c61e2fd9e6139c # v4.6.4
61
+ with :
62
+ folder : documentation
Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ show_contribution_banner: true
37
37
github_repo : ministryofjustice/hmpps-integration-api-docs
38
38
github_branch : main
39
39
40
- api_path : https://ministryofjustice.github.io/hmpps-integration-api/openapi/api-docs.json
40
+ # api_path: https://ministryofjustice.github.io/hmpps-integration-api/openapi/api-docs.json
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ last_reviewed_on: 2024-09-03
6
6
review_in: 3 months
7
7
---
8
8
9
- api >
9
+ # API Docs
10
10
11
11
## OpenAPI Specification
12
12
You can’t perform that action at this time.
0 commit comments