-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: db 마이그레이션에 따른 주소 변경 * refactor: dev cd 주석 처리
- Loading branch information
Showing
2 changed files
with
63 additions
and
63 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,62 +1,62 @@ | ||
name: dev/BE CD on Push | ||
|
||
on: | ||
push: | ||
branches: [ "dev/BE" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SUBMODULE_BE_TOKEN }} | ||
submodules: recursive | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
- name: Execute Gradle build | ||
run: | | ||
cd backend/baton | ||
./gradlew build | ||
- name: Setup Docker buildx | ||
uses: docker/[email protected] | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKERHUB_DEV_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_DEV_TOKEN }} | ||
|
||
- name: Docker Image Build | ||
run: | | ||
cd backend/baton | ||
docker build --platform linux/arm64/v8 -t 2023baton/2023baton -f Dockerfile-dev . | ||
- name: Docker Hub Push | ||
run: docker push 2023baton/2023baton | ||
|
||
deploy: | ||
runs-on: [ self-hosted, Linux, ARM64, dev ] | ||
needs: build | ||
|
||
steps: | ||
|
||
- name: Pull Latest Docker Image | ||
run: | | ||
sudo docker login --username ${{ secrets.DOCKERHUB_DEV_USERNAME }} --password ${{ secrets.DOCKERHUB_DEV_TOKEN }} | ||
sudo docker pull 2023baton/2023baton:latest | ||
- name: Docker Compose | ||
run: | | ||
/home/ubuntu/zero-downtime-deploy.sh | ||
sudo docker image prune -af | ||
# name: dev/BE CD on Push | ||
# | ||
# on: | ||
# push: | ||
# branches: [ "dev/BE" ] | ||
# | ||
# jobs: | ||
# build: | ||
# runs-on: ubuntu-22.04 | ||
# | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# token: ${{ secrets.SUBMODULE_BE_TOKEN }} | ||
# submodules: recursive | ||
# | ||
# - name: Set up JDK 17 | ||
# uses: actions/setup-java@v3 | ||
# with: | ||
# java-version: '17' | ||
# distribution: 'corretto' | ||
# | ||
# - name: Build with Gradle | ||
# uses: gradle/[email protected] | ||
# - name: Execute Gradle build | ||
# run: | | ||
# cd backend/baton | ||
# ./gradlew build | ||
# | ||
# - name: Setup Docker buildx | ||
# uses: docker/[email protected] | ||
# | ||
# - name: Login to Docker Hub | ||
# uses: docker/[email protected] | ||
# with: | ||
# username: ${{ secrets.DOCKERHUB_DEV_USERNAME }} | ||
# password: ${{ secrets.DOCKERHUB_DEV_TOKEN }} | ||
# | ||
# - name: Docker Image Build | ||
# run: | | ||
# cd backend/baton | ||
# docker build --platform linux/arm64/v8 -t 2023baton/2023baton -f Dockerfile-dev . | ||
# | ||
# - name: Docker Hub Push | ||
# run: docker push 2023baton/2023baton | ||
# | ||
# deploy: | ||
# runs-on: [ self-hosted, Linux, ARM64, dev ] | ||
# needs: build | ||
# | ||
# steps: | ||
# | ||
# - name: Pull Latest Docker Image | ||
# run: | | ||
# sudo docker login --username ${{ secrets.DOCKERHUB_DEV_USERNAME }} --password ${{ secrets.DOCKERHUB_DEV_TOKEN }} | ||
# sudo docker pull 2023baton/2023baton:latest | ||
# | ||
# - name: Docker Compose | ||
# run: | | ||
# /home/ubuntu/zero-downtime-deploy.sh | ||
# sudo docker image prune -af |
Submodule secret
updated
from 4bc3ee to 9a4adb