Skip to content

Commit a19d642

Browse files
authored
Merge pull request #746 from yarikoptic/enh-release
auto 11.0.5 is needed to avoid hitting some "Error: fatal: ... not an integer" bug
2 parents 1835cd4 + 5c3ce08 commit a19d642

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
- name: Download auto
2020
run: |
2121
#curl -vL -o - "$(curl -fsSL https://api.github.com/repos/intuit/auto/releases/latest | jq -r '.assets[] | select(.name == "auto-linux.gz") | .browser_download_url')" | gunzip > ~/auto
22-
# Pin to 10.16.1 so we don't break if & when
22+
# Pin so we don't break if & when
2323
# <https://github.com/intuit/auto/issues/1778> is fixed.
24-
wget -O- https://github.com/intuit/auto/releases/download/v10.16.1/auto-linux.gz | gunzip > ~/auto
24+
# 11.0.5 is needed for <https://github.com/intuit/auto/issues/2432>
25+
wget -O- https://github.com/intuit/auto/releases/download/v11.0.5/auto-linux.gz | gunzip > ~/auto
2526
chmod a+x ~/auto
2627
2728
- name: Query 'auto' on type of the release

0 commit comments

Comments
 (0)