auth update

This commit is contained in:
SnskArora 2025-03-22 16:10:02 +05:30
parent 1177984b9a
commit 42f97420c8
No known key found for this signature in database
GPG key ID: 6EC7FEA48093AB59
2 changed files with 6 additions and 4 deletions

View file

@ -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

View file

@ -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: