We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80f2e3 commit a526991Copy full SHA for a526991
.github/workflows/documentation.yml
@@ -9,10 +9,11 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
+ container:
13
+ image: swift:5.10
14
15
steps:
16
- uses: actions/checkout@v4
-
17
- name: Build Docs
18
run: |
19
mkdir -p ./gh-pages
@@ -23,9 +24,11 @@ jobs:
23
24
--transform-for-static-hosting \
25
--hosting-base-path OpenAPIKit \
26
--target OpenAPIKit
27
+ - name: Install rsync
28
+ run: |
29
+ apt-get update && apt-get install -y rsync
30
- name: Deploy to GitHub Pages
- uses: JamesIves/github-pages-deploy-action@v4.5.0
31
+ uses: JamesIves/github-pages-deploy-action@v4.6.8
32
with:
33
folder: gh-pages
34
branch: gh-pages
0 commit comments