Merge pull request #63 from TelePigeon/fix/62 #8
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: CD | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: create secret config file | |
run: | | |
cd src/main/resources | |
echo "${{ secrets.APPLICATION }}" > ./application.yml | |
- name: create-json | |
id: create-json | |
uses: jsdaniell/[email protected] | |
with: | |
name: "src/main/resources/firebase.json" | |
json: ${{ secrets.FIREBASE_JSON }} | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to Docker Hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.REPONAME }} | |
CD: | |
needs: [CI] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Docker Image Pull and Container Run | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SERVER_KEY }} | |
script: | | |
cd ~ | |
./deploy.sh |