-
Notifications
You must be signed in to change notification settings - Fork 5
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 #8 from marinesnow34/main
Config: workflow 오류 수정2
- Loading branch information
Showing
2 changed files
with
23 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
#추후에 메인서버 배포시에는 작성 예정 | ||
#추후에 메인서버 배포시에는 작성 예정 | ||
name: Main Server Merge | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: test #임시 | ||
run: | | ||
echo "test" |
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 |
---|---|---|
|
@@ -27,22 +27,22 @@ jobs: | |
run: ./gradlew clean build | ||
|
||
- name: remove plain.jar | ||
run: rm -rf build/libs/plain.jar | ||
run: rm -rf build/libs/*plain.jar | ||
|
||
- name: file copy | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build | ||
path: build | ||
name: libs | ||
path: build/libs | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: file download | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: build | ||
path: build | ||
name: libs | ||
path: libs | ||
- name: Upload to Cloudflare | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }} | ||
|
@@ -51,16 +51,16 @@ jobs: | |
BUCKET_NAME: ${{ secrets.CF_BUCKET_NAME }} | ||
ENDPOINT_URL: ${{ secrets.CF_ENDPOINT_URL }} | ||
run: | | ||
aws s3 sync build/libs/ s3://$BUCKET_NAME/java/main/test \ | ||
aws s3 sync libs/ s3://$BUCKET_NAME/java/main/test \ | ||
--endpoint-url $ENDPOINT_URL --delete --exact-timestamps | ||
- name: SSH and deploy | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.SSH_KEY }} | ||
port: ${{ secrets.PORT }} | ||
host: ${{ secrets.TEST_HOST }} | ||
username: ${{ secrets.TEST_USERNAME }} | ||
key: ${{ secrets.TEST_SSH_KEY }} | ||
port: ${{ secrets.TEST_PORT }} | ||
timeout: 40s # 30초 기본 | ||
script: | | ||
aws s3 sync s3://readyvery-dev-server/java/main/test ./docker/java/test/jar \ | ||
|