Skip to content

Commit

Permalink
Fix curl error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lonsdale authored and Andrew Lonsdale committed Sep 7, 2022
1 parent 9b75046 commit 6e55245
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
pip install -r requirements.txt
- name: Download latest macos binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_macos -o bin/osx/tinyt_macos
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_macos -o bin/osx/tinyt_macos

- name: Download latest exe binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt.exe -o bin/win/tinyt.exe
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt.exe -o bin/win/tinyt.exe

- name: Download latest linux binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_amd64 -o bin/linux/tinyt_amd64
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_amd64 -o bin/linux/tinyt_amd64


- name: Build
Expand Down Expand Up @@ -72,13 +72,13 @@ jobs:
pip install -r requirements.txt
- name: Download latest macos binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_macos -o bin/osx/tinyt_macos
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_macos -o bin/osx/tinyt_macos

- name: Download latest exe binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt.exe -o bin/win/tinyt.exe
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt.exe -o bin/win/tinyt.exe

- name: Download latest linux binary
run: curl https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_amd64 -o bin/linux/tinyt_amd64
run: curl -L https://github.com/Oshlack/Toblerone/releases/latest/download/tinyt_amd64 -o bin/linux/tinyt_amd64

- name: Build for mac
run: python3 create_macos.py py2app && chmod +x ./dist/Toblerone.app
Expand Down
2 changes: 1 addition & 1 deletion assets/gui.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ <h5 class="h4">Settings</h5>
<div class="row">
<div class="col-12 col-md text-center">
<small>
Toblerone v0.3.6
Toblerone v0.3.7
</small>
</div>
</div>
Expand Down

0 comments on commit 6e55245

Please sign in to comment.