cicd: 도커 이미지 업로드 과정 분리 (#35) #1
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
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Github Repository 파일 불러오기 | |
| uses: actions/checkout@v4 | |
| - name: 도커 허브 로그인 | |
| run: echo "${{ secrets.DOCKER_ACCESS_TOKEN }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
| - name: 도커 이미지 빌드및 Push | |
| run: | | |
| docker build -t 7zrv/somemore:${GITHUB_SHA::7} -t 7zrv/somemore:latest . | |
| docker push 7zrv/somemore:${GITHUB_SHA::7} | |
| docker push 7zrv/somemore:latest |