Skip to content

Commit

Permalink
v1.0.0 - minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Mar 28, 2024
1 parent efec28b commit 27977ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

upload-release:
runs-on: ubuntu-latest
needs: [build-linux, build-windows, macos-linux]
needs: [build-linux, build-windows, build-macos]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -64,15 +64,15 @@ jobs:
name: uploads
path: tpy-linux

macos-linux:
build-macos:
runs-on: macos-latest
needs: [quality-check]
steps:
- uses: actions/checkout@v2
with:
ref: master

- name: Build for linux
- name: Build for macOS
run: cargo build --release

- name: Rename binary
Expand Down
8 changes: 4 additions & 4 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ fi

if [[ $version == v* ]]; then
version=${version:1}
if [[ $version == 0.* ]]; then
echo "Error: Version $version is not supported"
exit 1
fi
fi
if [[ $version == 0.* ]]; then
echo "Error: Version $version is not supported"
exit 1
fi

if [ "$macOS" = true ]; then
Expand Down

0 comments on commit 27977ef

Please sign in to comment.