This commit is contained in:
2025-06-24 11:53:10 +02:00
parent 918b45c940
commit 13c23863be

View File

@@ -22,9 +22,12 @@ jobs:
run: git config --global url.git@gitea-ssh.engen.priv.no:.insteadOf https://gitea.engen.priv.no/ run: git config --global url.git@gitea-ssh.engen.priv.no:.insteadOf https://gitea.engen.priv.no/
- name: Install ko - name: Install ko
run: go install github.com/google/ko@latest run: go install github.com/google/ko@latest
- name: Extract tag (outside container)
shell: bash
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build - name: Build
env: env:
KO_DOCKER_REPO: registry.engen.priv.no/unifi-network-operator-controller KO_DOCKER_REPO: registry.engen.priv.no/unifi-network-operator-controller
PATH: ~/go/bin:$PATH PATH: ~/go/bin:$PATH
run: | run: |
~/go/bin/ko publish ./cmd --tags "${GITHUB_REF#refs/tags/},latest" ~/go/bin/ko publish ./cmd --tags "$TAG,latest"