ci: remove private module workarounds (signalcli is public now)

This commit is contained in:
2026-03-11 21:54:45 +00:00
parent e64fff9e99
commit 138075a205
2 changed files with 0 additions and 18 deletions

View File

@@ -9,9 +9,6 @@ on:
permissions: permissions:
contents: read contents: read
env:
GOPRIVATE: github.com/taigrr/*
jobs: jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -22,9 +19,6 @@ jobs:
with: with:
go-version-file: go.mod go-version-file: go.mod
- name: Configure private modules
run: git config --global url."https://${{ secrets.GH_PAT }}@github.com/".insteadOf "https://github.com/"
- name: Check goimports - name: Check goimports
run: | run: |
go install golang.org/x/tools/cmd/goimports@latest go install golang.org/x/tools/cmd/goimports@latest
@@ -44,9 +38,6 @@ jobs:
with: with:
go-version-file: go.mod go-version-file: go.mod
- name: Configure private modules
run: git config --global url."https://${{ secrets.GH_PAT }}@github.com/".insteadOf "https://github.com/"
- name: Run tests - name: Run tests
run: go test -race -v ./... run: go test -race -v ./...
@@ -59,8 +50,5 @@ jobs:
with: with:
go-version-file: go.mod go-version-file: go.mod
- name: Configure private modules
run: git config --global url."https://${{ secrets.GH_PAT }}@github.com/".insteadOf "https://github.com/"
- name: Build - name: Build
run: go build -v ./... run: go build -v ./...

View File

@@ -8,9 +8,6 @@ on:
permissions: permissions:
contents: write contents: write
env:
GOPRIVATE: github.com/taigrr/*
jobs: jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -23,9 +20,6 @@ jobs:
with: with:
go-version-file: go.mod go-version-file: go.mod
- name: Configure private modules
run: git config --global url."https://${{ secrets.GH_PAT }}@github.com/".insteadOf "https://github.com/"
- uses: goreleaser/goreleaser-action@v6 - uses: goreleaser/goreleaser-action@v6
with: with:
distribution: goreleaser-pro distribution: goreleaser-pro