File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 4848 run : yarn build
4949 working-directory : ./ui
5050
51+ publish :
52+ if : github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
53+ needs : [ verify ]
54+ runs-on : ubuntu-24.04
55+
56+ steps :
57+ - name : Check-out repository
58+ id : repo-checkout
59+ uses : actions/checkout@v4
60+
61+ - name : Set up JDK
62+ uses : actions/setup-java@v4
63+ with :
64+ distribution : ' zulu'
65+ java-version : ' 21'
66+ cache : ' sbt'
67+
68+ - uses : sbt/setup-sbt@v1
69+
70+ - name : Set up Node.js
71+ uses : actions/setup-node@v4
72+ with :
73+ node-version : 22
74+
75+ - name : Generate OpenAPI Spec
76+ id : generate-openapi-spec
77+ run : sbt "backend/generateOpenAPIDescription"
78+
5179 - name : Login to DockerHub
5280 uses : docker/login-action@v1
5381 with :
You can’t perform that action at this time.
0 commit comments