From c266f09c007532d5aa0a0ef63421d63c79b6e93c Mon Sep 17 00:00:00 2001 From: Hans Thienpondt Date: Mon, 20 Oct 2025 11:40:46 +0000 Subject: [PATCH] update CI/CD to run from github actions public runners --- .github/workflows/release.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8cde823..24d0c9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: run: go test ./... -v build-and-release: - runs-on: sdcio-action-runners + runs-on: ubuntu-latest needs: test if: startsWith(github.ref, 'refs/tags/v') steps: @@ -49,7 +49,14 @@ jobs: - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6 with: