chore: 개인정보 처리방침 수정 #5
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: Deploy to Production | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/billilge-client | |
| CAPROVER_APP: www | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| environment: production | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create .env file | |
| run: echo "${{ secrets.PROD_ENV_FILE }}" > .env.production | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Build and Push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| push: true | |
| tags: | | |
| ${{ env.DOCKER_IMAGE }}:prod | |
| ${{ env.DOCKER_IMAGE }}:prod-${{ github.sha }} | |
| ${{ env.DOCKER_IMAGE }}:latest | |
| cache-from: type=gha,scope=prod | |
| cache-to: type=gha,mode=max,scope=prod | |
| - name: Deploy to CapRover | |
| uses: caprover/deploy-from-github@v1.1.2 | |
| with: | |
| server: ${{ secrets.CAPROVER_SERVER }} | |
| app: ${{ env.CAPROVER_APP }} | |
| token: ${{ secrets.CAPROVER_PROD_APP_TOKEN }} | |
| image: ${{ env.DOCKER_IMAGE }}:prod |