-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (64 loc) ยท 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Update Markdown Files
on:
push:
branches:
- main
# GitHub Pages ์ ๋ฐฐํฌํ๊ธฐ ์ํ GITHUB_TOKEN ๊ถํ ์ค์
permissions:
contents: read
pages: write
id-token: write
# ๋์์ฑ ๋ฐฐํฌ ํ์ฉ
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
update-markdown:
runs-on: macos-13
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1 # xcode ๋ฒ์ ์ค์ ์ ์ํจ
with:
xcode-version: '15.0'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "5.10.1"
- name: Run Swift script and check result
working-directory: ${{ github.workspace }}
run: |
if swift run Script; then
echo "Script executed successfully"
else
echo "Script execution failed"
exit 1
fi
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git diff --quiet && git diff --staged --quiet || git commit -m "chore: Update markdown files"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Build Documentation
run: |
swift package --allow-writing-to-directory ./docs \
generate-documentation --target AriNote \
--disable-indexing \
--transform-for-static-hosting \
--output-path ./docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'docs'
- name: Deploy to Pages
id: deployment
uses: actions/deploy-pages@v1