-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.21 KB
/
update-markdown-files.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
name: Update Markdown Files and Deploy to Pages
on:
push:
branches:
- main
# GitHub Pages에 배포할 수 있도록 GITHUB_TOKEN의 권한을 설정합니다.
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
update-markdown:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Swift
uses: swift-actions/setup-swift@v2
- name: Run Swift script and check result
working-directory: ${{ github.workspace }}
run: |
if swift run Scripts; then
echo "Script executed successfully"
else
echo "Script execution failed"
exit 1
fi
- name: Build Documentation
working-directory: ${{ github.workspace }}
run: |
swift package --allow-writing-to-directory ./docs \
generate-documentation --target AriNote \
--disable-indexing \
--transform-for-static-hosting \
--hosting-base-path TIL \
--output-path ./docs
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs