Skip to content

HOTFIX: 관리자 대시보드 근무자도 들어갈 수 있게 수정 #7

HOTFIX: 관리자 대시보드 근무자도 들어갈 수 있게 수정

HOTFIX: 관리자 대시보드 근무자도 들어갈 수 있게 수정 #7

Workflow file for this run

name: Deploy to Development
on:
push:
branches:
- develop
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