Config: img_url 미반영 변경 #37
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
#추후에 메인서버 배포시에는 작성 예정 | |
name: Main Server Merge | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code. # Repo checkout | |
uses: actions/checkout@v3 | |
- name: Set application.properties from secrets | |
run: | | |
echo "${{ secrets.MAIN_APPLICATION_PROPERTIES }}" > src/main/resources/application.properties | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
- name: remove plain.jar | |
run: rm -rf build/libs/*plain.jar | |
# - name: file copy | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: libs | |
# path: build/libs | |
- name: Upload to Cloudflare | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.CF_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-east-1 | |
BUCKET_NAME: ${{ secrets.CF_BUCKET_NAME }} | |
ENDPOINT_URL: ${{ secrets.CF_ENDPOINT_URL }} | |
run: | | |
aws s3 sync build/libs/ s3://$BUCKET_NAME/java/main/ready \ | |
--endpoint-url $ENDPOINT_URL --delete --exact-timestamps | |
- name: SSH and deploy | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.MAIN_HOST }} | |
username: ${{ secrets.MAIN_USERNAME }} | |
key: ${{ secrets.MAIN_SSH_KEY }} | |
port: ${{ secrets.TEST_PORT }} | |
timeout: 40s # 30초 기본 | |
script: | | |
aws s3 sync s3://readyvery-dev-server/java/main/ready ./docker/readyvery/jar \ | |
--endpoint-url https://29c6e4b55b1ddb8d2b6e69df21141caa.r2.cloudflarestorage.com \ | |
--delete --exact-timestamps | |
docker-compose build readyvery | |
docker-compose up -d readyvery | |