Skip to content

Commit ac91ed4

Browse files
authored
[#2][Release] First Release
[Release] First Release
2 parents 21b89a4 + 8441bec commit ac91ed4

File tree

20 files changed

+321
-0
lines changed

20 files changed

+321
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: 사이트 배포
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
# Action 탭에서 워크플로우 수동 실행 허용
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
permissions:
13+
id-token: write
14+
contents: read
15+
deployments: write
16+
pages: write
17+
18+
runs-on: macos-latest
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: swift-actions/setup-swift@v2
23+
24+
- name: 스위프트 패키지 실행
25+
run: swift run --configuration release
26+
27+
- name: Pages 설정
28+
uses: actions/configure-pages@v5
29+
30+
- name: Artifact 업로드
31+
uses: actions/upload-pages-artifact@v3
32+
with:
33+
path: './Build'
34+
35+
- name: 배포
36+
id: deployment
37+
uses: actions/deploy-pages@v4

Assets/Assets.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Place any assets you want copied into the build here.

Assets/images/Images.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is the best place to put images for your build, creating subfolders below here as needed.

Assets/images/discord.svg

Lines changed: 1 addition & 0 deletions
Loading

Assets/images/favicon.png

954 Bytes
Loading

Assets/images/github.svg

Lines changed: 1 addition & 0 deletions
Loading

Assets/images/instagram.svg

Lines changed: 1 addition & 0 deletions
Loading

Assets/images/logo.png

13.5 KB
Loading

Content/Content.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
If you want Ignite to generate pages based on Markdown files, you should place them in here. You can group your content however, you want – category, year, etc – just by placing them into subfolders of Content.
2+
3+
The same path (minus "Content") is used to place your rendered Markdown files in the Build folder, but you can also use the "path" YAML front matter to customize this.

Includes/Includes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
If you need to import some pre-written HTML, you can place files here then bring them into your project using Include("YourFilename.html"). The Include element automatically looks in this Includes folder.

0 commit comments

Comments
 (0)