Skip to content

Commit

Permalink
add apple-darwin and pc-windows release targets
Browse files Browse the repository at this point in the history
  • Loading branch information
saeidakbari committed Apr 7, 2024
1 parent b6c134d commit e0630da
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,21 @@ jobs:

upload-assets:
needs: create-release
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: repust
target: ${{ matrix.target }}
zip: windows
token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

## [0.1.1] - 2024-04-07

### Added

+ Supporting Apple-Darwin and PC-Windows release targets

## [0.1.0] - 2024-04-07

### Added
Expand All @@ -24,4 +30,5 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
+ Employing asynchronous operations with Tokio and Futures for non-blocking functionality.

[Unreleased]: https://github.com/saeidakbari/repust/compare/v0.1.0...HEAD
[0.1.1]: https://github.com/saeidakbari/repust/compare/v0.1.0...v0.1.1
[0.1.0]: https://https://github.com/saeidakbari/repust/tags/v0.1.0

0 comments on commit e0630da

Please sign in to comment.