-
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 #2 from marinesnow34/test
Fix: s3 sync안되는 문제 해결
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 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,8 @@ jobs: | |
ENDPOINT_URL: ${{ secrets.CF_ENDPOINT_URL }} | ||
run: | | ||
aws s3 sync build s3://$BUCKET_NAME/build_ceo \ | ||
--endpoint-url $ENDPOINT_URL --delete | ||
--endpoint-url $ENDPOINT_URL --delete \ | ||
--exact-timestamps | ||
- name: SSH and deploy | ||
uses: appleboy/[email protected] | ||
|
@@ -65,7 +66,8 @@ 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 --delete | ||
--endpoint-url https://29c6e4b55b1ddb8d2b6e69df21141caa.r2.cloudflarestorage.com --delete \ | ||
--exact-timestamps | ||
- name: Discordbot alert # 디스코드 알림 | ||
uses: sarisia/[email protected] | ||
with: | ||
|