Merge pull request #10 from Mojacknong/feature_9/추가-API-구현 #18
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: cicd for development | |
on: | |
push: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: dev | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Copy application.yml | |
env: | |
OCCUPY_DEPLOY: ${{ secrets.OCCUPY_DEPLOY }} | |
OCCUPY_DB: ${{ secrets.OCCUPY_DB }} | |
OCCUPY_AWS: ${{ secrets.OCCUPY_AWS }} | |
run: | | |
cd ./src/main/resources | |
touch ./application.yml | |
echo "$OCCUPY_DEPLOY" > ./application.yml | |
touch ./application-db.yml | |
echo "$OCCUPY_DB" > ./application-db.yml | |
touch ./application-aws.yml | |
echo "$OCCUPY_AWS" > ./application-aws.yml | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 | |
with: | |
arguments: clean build | |
- name: Login to DockerHub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Docker build & push to dockerhub | |
run: | | |
docker build -f Dockerfile -t minchogt/farmus-spring . | |
docker push minchogt/farmus-spring | |
# docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: dev | |
steps: | |
- name: Setup SSH | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Deploy to dev | |
uses: appleboy/ssh-action@master | |
id: deploy-prod | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SSH_USER }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
envs: GITHUB_SHA | |
script: | | |
sudo docker pull minchogt/farmus-spring | |
./deploy.sh | |
docker image prune -f |