File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8181 if : inputs.nightly != 'true'
8282 # find previous tag by filtering out nightly tags and choosing the
8383 # second to last tag (last one is the current release)
84+ # TODO fix this filter to only filter builder tags
8485 run : |
8586 prev_tag=$(git tag | grep -v "nightly" | sort -r --version-sort | head -n 2 | tail -n 1)
8687 echo "GORELEASER_PREVIOUS_TAG=$prev_tag" >> "$GITHUB_OUTPUT"
@@ -122,7 +123,7 @@ jobs:
122123 distribution : goreleaser-pro
123124 version : ${{ env.GORELEASER_PRO_VERSION }}
124125 workdir : distributions/${{ inputs.distribution }}
125- args : release --clean --split --timeout 2h --verbose -- config .goreleaser-build.yaml --release-header-tmpl=../../.github/release-template.md ${{ steps.nightly-check.outputs.NIGHTLY_FLAG }}
126+ args : release --clean --split --timeout 2h --config .goreleaser-build.yaml --release-header-tmpl=../../.github/release-template.md ${{ steps.nightly-check.outputs.NIGHTLY_FLAG }}
126127 env :
127128 GOOS : ${{ matrix.GOOS }}
128129 GOARCH : ${{ matrix.GOARCH }}
@@ -249,7 +250,7 @@ jobs:
249250 distribution : goreleaser-pro
250251 version : ${{ env.GORELEASER_PRO_VERSION }}
251252 workdir : distributions/${{ inputs.distribution }}
252- args : continue --merge --timeout 2h --verbose
253+ args : continue --merge --timeout 2h
253254 env :
254255 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
255256 COSIGN_YES : true
You can’t perform that action at this time.
0 commit comments