Skip to content

Commit 7a71b2d

Browse files
committed
ci: fix PATH in release workflow
A previous PR changed to installing the autotag binary into $RUNNER_TEMP/bin instead of /usr/local/bin so that sudo would not be required, but we need to add this to PATH
1 parent a29630d commit 7a71b2d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
- name: install autotag binary
6767
run: |
6868
curl -sL https://git.io/autotag-install | sh -s -- -b "${RUNNER_TEMP}/bin"
69+
echo "${RUNNER_TEMP}/bin" >> $GITHUB_PATH
6970
7071
- name: Install GoReleaser
7172
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6

0 commit comments

Comments
 (0)