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 da69799 commit 65554a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- name: ubuntu-latest
platform: linux
cpu: amd64
- name: macOS-latest
platform: darwin
cpu: amd64
steps:
- uses: actions/checkout@v1
- uses: jiro4989/setup-nim-action@v1
Expand All @@ -26,7 +30,7 @@ jobs:
- run: nimble build -Y -d:release --threads:on
- name: Create artifact
run: |
assets="${{ env.APP_NAME }}_$(echo "${{ runner.os }}" | tr '[:upper:]' '[:lower:]')"
assets="${{ env.APP_NAME }}_${{ matrix.os.platform }}_${{ matrix.os.cpu }}"
tar czf "$assets.tar.gz" "${{ env.APP_NAME }}"
shell: bash
- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion 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.9
VERSION=v0.2.0
## set the OS you use. (linux or macos)
OS=linux
## case you use wget
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.9"
version = "0.2.0"
author = "solaoi"
description = "HighPerformance Stub Server"
license = "MIT"
Expand Down

0 comments on commit 65554a7

Please sign in to comment.