![[Git Actions / Docker] An image does not exist locally with the tag: [repo]/[image]](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbHuWDB%2Fbtst6oyyqLM%2F2gkHLBJAQqe94uiGDx6Oi0%2Fimg.png)
트러블슈팅2023. 9. 15. 18:46[Git Actions / Docker] An image does not exist locally with the tag: [repo]/[image]
에러 메세지 An image does not exist locally with the tag: [repo]/[image] 아래와 같은 action.yml을 사용하고있었는데 계속해서 리파지토리에 이미지를 빌드한 후 태그를 못잡아 주는 것 같았다. name: Docker Image CI on: push: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Login Dockerhub env: DOCKER_USERNAME: ${{secrets.DOCKERHUB_USERNAME}} DOCKER_PASSWORD: ${{secrets.DOCKERHUB_PASSWORD}} run: docke..