-
Notifications
You must be signed in to change notification settings - Fork 29
43 lines (43 loc) · 2 KB
/
publish-swagger-specs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Publish Swagger Specs
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Cache
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Run Swagger Publisher
run: ./gradlew test --tests uk.gov.hmcts.ccd.swagger.SwaggerGeneratorTest
- name: Commit to repository
run: |
mkdir swagger-staging
cd swagger-staging
git init
git config user.email "[email protected]"
git config user.name "GitHub action"
git remote add upstream "https://jenkins-reform-hmcts:${{ secrets.GH_TOKEN }}@github.com/hmcts/cnp-api-docs.git"
git pull upstream master
repo=`echo "$GITHUB_REPOSITORY" | cut -f2- -d/`
echo "$(cat /tmp/ccd-data-store-api.v1_internal.json)" > "docs/specs/ccd-data-store-api.v1_internal.json"
echo "$(cat /tmp/ccd-data-store-api.v1_external.json)" > "docs/specs/ccd-data-store-api.v1_external.json"
echo "$(cat /tmp/ccd-data-store-api.v2_internal.json)" > "docs/specs/ccd-data-store-api.v2_internal.json"
echo "$(cat /tmp/ccd-data-store-api.v2_external.json)" > "docs/specs/ccd-data-store-api.v2_external.json"
git add "docs/specs/ccd-data-store-api.v1_internal.json"
git add "docs/specs/ccd-data-store-api.v1_external.json"
git add "docs/specs/ccd-data-store-api.v2_internal.json"
git add "docs/specs/ccd-data-store-api.v2_external.json"
# Only commit and push if we have changes.
git diff --quiet && git diff --staged --quiet || (git commit -m "Update spec for $repo#${GITHUB_SHA:7}"; git push --set-upstream upstream master)