-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from marina-yhm/main
Config: 공통테마적용
- Loading branch information
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
ENDPOINT_URL: ${{ secrets.CF_ENDPOINT_URL }} | ||
run: | | ||
aws s3 sync build s3://$BUCKET_NAME/build_ceo \ | ||
--endpoint-url $ENDPOINT_URL | ||
--endpoint-url $ENDPOINT_URL --delete | ||
- name: SSH and deploy | ||
uses: appleboy/[email protected] | ||
|
@@ -65,7 +65,7 @@ jobs: | |
timeout: 40s # 30초 기본 | ||
script: | | ||
aws s3 sync s3://readyvery-dev-server/build_ceo ./docker/react/build_boss \ | ||
--endpoint-url https://29c6e4b55b1ddb8d2b6e69df21141caa.r2.cloudflarestorage.com | ||
--endpoint-url https://29c6e4b55b1ddb8d2b6e69df21141caa.r2.cloudflarestorage.com --delete | ||
- name: Discordbot alert # 디스코드 알림 | ||
uses: sarisia/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const theme = { | ||
colors: { | ||
MainColor: '#05422b', | ||
HoverColor: '#3CB371', | ||
accent: '#e0234e', | ||
}, | ||
fontSize: { | ||
small: '12px', | ||
medium: '16px', | ||
large: '24px', | ||
}, | ||
// 여기에 더 많은 테마 변수를 추가할 수 있습니다. | ||
}; | ||
|
||
export default theme; |