You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/github/workflows/gorelease.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,12 +35,12 @@ jobs:
35
35
with:
36
36
path: |
37
37
~/go/bin/gorelease
38
-
key: ${{ runner.os }}-gorelease
38
+
key: ${{ runner.os }}-gorelease-fork
39
39
- name: Gorelease
40
40
id: gorelease
41
41
run: |
42
-
test -e ~/go/bin/gorelease || go install golang.org/x/exp/cmd/gorelease@latest
43
-
OUTPUT=$(gorelease || exit 0)
42
+
test -e ~/go/bin/gorelease || (rm -rf /tmp/gorelease && mkdir -p /tmp/gorelease && cd /tmp/gorelease && go mod init foo && go mod edit -replace golang.org/x/exp=github.com/vearutop/golang-exp@gorelease-generic && go get golang.org/x/exp/cmd/gorelease && go install golang.org/x/exp/cmd/gorelease)
0 commit comments