We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167bbf0 commit 6adbcf5Copy full SHA for 6adbcf5
.github/workflows/deploy.yml
@@ -23,13 +23,14 @@ jobs:
23
run: swift run --configuration release
24
# 만약 안 먹히면, build -> .build/release/KoreanSwiftStudentSite
25
26
- - name: 파일 복사
27
- run: |
+ - name: Pages 설정
+ uses: actions/configure-pages@v5
28
+
29
+ - name: Artifact 업로드
30
+ uses: actions/upload-pages-artifact@v3
31
+ with:
32
+ path: './Build'
33
34
- name: 배포
- uses: peaceiris/actions-gh-pages@v3
- with:
- personal_token: ${{ secrets.PERSONAL_TOKEN }}
- external_repository: wwdc-kr/wwdc-kr.github.io
- publish_branch: deploy-test # TODO: main
35
- publish_dir: ./Build/
+ id: deployment
36
+ uses: actions/deploy-pages@v4
0 commit comments