-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.05 KB
/
pages.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
44
45
46
47
48
49
50
51
52
53
54
name: pages
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pages: write
id-token: write
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Preprocess with SBT
run: >
sbt
'set openapi / Preprocess / target := (openapi / target).value / "public" / "openapi"'
'openapi / Preprocess / preprocess'
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./openapi/target/public
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2