fix: docker yarn install 후에 husky 작동하던 현상 수정 #2
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 Development | |
| on: | |
| push: | |
| branches: | |
| - chore/#142-cicd-migration | |
| env: | |
| DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/billilge-client | |
| CAPROVER_APP: dev | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| environment: development | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create .env file | |
| run: echo "${{ secrets.DEV_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 }}:dev | |
| ${{ env.DOCKER_IMAGE }}:dev-${{ github.sha }} | |
| cache-from: type=gha,scope=dev | |
| cache-to: type=gha,mode=max,scope=dev | |
| - name: Deploy to CapRover | |
| uses: caprover/deploy-from-github@v1.1.2 | |
| with: | |
| server: ${{ secrets.CAPROVER_SERVER }} | |
| app: ${{ env.CAPROVER_APP }} | |
| token: ${{ secrets.CAPROVER_DEV_APP_TOKEN }} | |
| image: ${{ env.DOCKER_IMAGE }}:dev |