Skip to content

fix: 워크플로우 에러 수정 #8

fix: 워크플로우 에러 수정

fix: 워크플로우 에러 수정 #8

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-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 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