diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1a81287..3863ab2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,15 +41,16 @@ jobs: registry: ghcr.io username: snskArora password: ${{ steps.generate_token.outputs.token }} + - name: Build run: make build env: VERSION: latest - - name: Push - run: make push - env: - VERSION: latest + # - name: Push + # run: make push + # env: + # VERSION: latest - name: Test run: make test diff --git a/Makefile b/Makefile index e27beca..ca7c724 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,7 @@ build: exit 1; \ fi docker build --platform $(TARGET_PLATFORM) -t $(IMAGE_REPO):$$VERSION . + docker push $(IMAGE_REPO):$(VERSION) .PHONY: push push: