Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Gui-Yom committed May 29, 2022
1 parent 1e350a7 commit d587fa9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release-linux:
name: Build binaries (linux) and publish on crates.io
name: Build release (linux)
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -18,18 +18,15 @@ jobs:
toolchain: stable
default: true
profile: minimal
components: rust-docs
- name: Build release
working-directory: hlbc-cli
run: cargo build --release
- name: Upload release artifact
uses: softprops/action-gh-release@v1
with:
files: target/release/hlbc-cli
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release-windows:
name: Build binaries (windows)
name: Build release (windows)
runs-on: windows-latest
steps:
- name: Checkout
Expand All @@ -40,13 +37,10 @@ jobs:
toolchain: stable
default: true
profile: minimal
components: rust-docs
- name: Build release
working-directory: hlbc-cli
run: cargo build --release
- name: Upload release artifact
uses: softprops/action-gh-release@v1
with:
files: target/release/hlbc-cli.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d587fa9

Please sign in to comment.