Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
solaoi committed Jul 21, 2022
1 parent ded8e02 commit 8c2ada0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ env:
APP_NAME: 'broly'
NIM_VERSION: 'stable'
MAINTAINER: 'solaoi'
RELEASE_FILES: broly LICENSE README.*

jobs:
build-artifact:
Expand All @@ -28,7 +27,7 @@ jobs:
- name: Create artifact
run: |
assets="${{ env.APP_NAME }}_$(echo "${{ runner.os }}" | tr '[:upper:]' '[:lower:]')"
tar czf "$assets.tar.gz" "$assets"
tar czf "$assets.tar.gz" "${{ env.APP_NAME }}"
shell: bash
- uses: actions/upload-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ brew upgrade broly
```sh
# Install with wget or curl
## set the latest version on releases.
VERSION=v0.1.6
VERSION=v0.1.7
## set the OS you use. (linux or macos)
OS=linux
## case you use wget
Expand All @@ -55,7 +55,7 @@ curl -LO https://github.com/solaoi/broly/releases/download/$VERSION/broly_${OS}.
## extract
tar xvf ./broly_${OS}.tar.gz
## move it to a location in your $PATH, such as /usr/local/bin.
mv ./broly_${OS}/broly /usr/local/bin/
mv ./broly /usr/local/bin/
```

### 3. Docker
Expand Down
2 changes: 1 addition & 1 deletion broly.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.1.6"
version = "0.1.7"
author = "solaoi"
description = "HighPerformance Stub Server"
license = "MIT"
Expand Down

0 comments on commit 8c2ada0

Please sign in to comment.