settings: sudo 명령 제거 #102
This file contains hidden or 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: Build Image & Push of Dev server | |
| on: | |
| push: | |
| branches: | |
| [ "dev" ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| CI-CD: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: cache gradle | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gradle- | |
| - name: overwrite application.yml | |
| if: | | |
| contains(github.ref, 'dev') | |
| run: | | |
| mkdir -p ./src/main/resources | |
| echo "${{ secrets.YML }}" > src/main/resources/application.yml | |
| shell: bash | |
| - name: set up redis | |
| uses: supercharge/redis-github-action@1.7.0 | |
| with: | |
| redis-version: 6 | |
| - name: create-json | |
| id: create-json | |
| uses: jsdaniell/create-json@1.1.2 | |
| with: | |
| name: "firebase-key.json" | |
| json: ${{ secrets.FIREBASE_KEY }} | |
| - name: move firebase-key.json to src/main/resources | |
| run: | | |
| mkdir -p ./src/main/resources | |
| cp firebase-key.json ./src/main/resources/firebase-key.json | |
| shell: bash | |
| - name: build with gradle | |
| run: | | |
| ./gradlew bootjar | |
| - name: login into docker | |
| uses: docker/login-action@v2 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| - name: build docker image & push to docker hub | |
| if: contains(github.ref, 'dev') | |
| run: | | |
| pwd | |
| docker build -f Dockerfile.dev --platform linux/amd64 -t ${{ secrets.DOCKERHUB_USERNAME }}/feelin-dev:latest . | |
| docker push ${{ secrets.DOCKERHUB_USERNAME }}/feelin-dev:latest | |
| - name: send deploy file to dev server | |
| uses: appleboy/scp-action@master | |
| with: | |
| host: ${{ secrets.HOST_DEV }} | |
| username: ubuntu | |
| key: ${{ secrets.NEW_KEY }} | |
| source: ./scripts/deploy-dev.sh | |
| target: /home/ubuntu/ | |
| - name: send docker compose file to dev server | |
| uses: appleboy/scp-action@master | |
| with: | |
| host: ${{ secrets.HOST_DEV }} | |
| username: ubuntu | |
| key: ${{ secrets.NEW_KEY }} | |
| source: ./docker-compose-dev.yml | |
| target: /home/ubuntu/ | |
| - name: send firebase key file to dev server | |
| uses: appleboy/scp-action@master | |
| with: | |
| host: ${{ secrets.HOST_DEV }} | |
| username: ubuntu | |
| key: ${{ secrets.NEW_KEY }} | |
| source: firebase-key.json | |
| target: /home/ubuntu/ | |
| - name: deploy to dev server | |
| uses: appleboy/ssh-action@master | |
| id: deploy-dev | |
| if: contains(github.ref, 'dev') | |
| with: | |
| host: ${{ secrets.HOST_DEV }} | |
| username: ubuntu | |
| key: ${{ secrets.NEW_KEY }} | |
| envs: GITHUB_SHA | |
| script: | | |
| docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} | |
| chmod 777 /home/ubuntu/scripts/deploy-dev.sh | |
| /home/ubuntu/scripts/deploy-dev.sh | |
| docker image prune -f | |
| - name: print hostname and IP | |
| uses: appleboy/ssh-action@master | |
| with: | |
| host: ${{ secrets.HOST_PROD }} | |
| username: ubuntu | |
| key: ${{ secrets.NEW_KEY }} | |
| script: | | |
| echo "=== HOST INFO ===" | |
| hostname | |
| curl ifconfig.me |