fix: 관리자 role select 버그수정 & 헤더 권한 관련 버그 수정 (#157) #66
  
    
      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: Auto deploy to EC2 | |
| on: | |
| push: | |
| branches: ['main'] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 최신 버전을 다운로드 받습니다. | |
| uses: actions/[email protected] | |
| with: | |
| ref: main | |
| - name: 도커 이미지를 생성하고 도커 허브에 업로드합니다. | |
| run: | | |
| docker login -u $DOCKER_ID -p $DOCKER_TOKEN | |
| docker build -t $DOCKER_REPO:latest ./ | |
| docker push $DOCKER_REPO:latest | |
| env: | |
| DOCKER_ID: ${{ secrets.DOCKER_ID }} | |
| DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
| DOCKER_REPO: ${{ secrets.DOCKER_REPO }} |