-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Angelo Conforti
committed
Aug 15, 2024
1 parent
67f69ca
commit 8668913
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,18 @@ jobs: | |
- name: Setup Ko | ||
uses: ko-build/[email protected] | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build Image | ||
env: | ||
auth_token: ${{ secrets.DOCKERHUB_TOKEN }} | ||
AUTH_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
KO_DOCKER_REPO: angeloxx/cilium-egress-observer | ||
VERSION: latest | ||
run: | | ||
echo "${auth_token}" | ko login hub.docker.io --username angeloxx --password-stdin | ||
# echo "${AUTH_TOKEN}" | ko login hub.docker.io --username angeloxx --password-stdin | ||
make build-image | ||