add support to qps tuning #19
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
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ '1.21.9' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- 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 }} | |
# KO_DOCKER_REPO: angeloxx/cilium-egress-observer | |
#VERSION: latest | |
IMAGE_REGISTRY_NAMESPACE: angeloxx | |
IMAGE_REGISTRY: docker.io | |
IMAGE_TAG_FORCED: latest | |
run: | | |
# echo "${AUTH_TOKEN}" | ko login hub.docker.io --username angeloxx --password-stdin | |
make build-image | |