1 parent 6f18392 commit 3da7ea9Copy full SHA for 3da7ea9
1 file changed
.github/workflows/release.yml
@@ -43,7 +43,12 @@ jobs:
43
uses: dopplerhq/cli-action@v3
44
45
- name: GoReleaser release (Homebrew tap token via Doppler)
46
- run: doppler run -- goreleaser release --clean
+ run: |
47
+ # dopplerhq/cli-action installs the doppler binary into ./bin, which
48
+ # would make the tree dirty and abort goreleaser. Hide it from git's
49
+ # dirty check without a tracked change.
50
+ printf 'bin/\n' >> "$(git rev-parse --git-dir)/info/exclude"
51
+ doppler run -- goreleaser release --clean
52
env:
53
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments