name: Release on: push: tags: ["v*"] jobs: release: runs-on: docker container: git.nakama.town/fmartingr/ci-images/ci-base:1.0.0 steps: - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Install Go uses: actions/setup-go@v7 with: go-version-file: go.mod - name: Login to container registry run: echo "${{ secrets.ACTIONS_TOKEN }}" | docker login git.nakama.town -u ${{ github.actor }} --password-stdin - name: Run GoReleaser run: goreleaser release --clean env: GORELEASER_FORCE_TOKEN: gitea GITEA_TOKEN: ${{ secrets.ACTIONS_TOKEN }}