no longer depends on openssl

This commit is contained in:
Robin Appelman 2021-07-31 16:58:03 +02:00
commit 1daec9dafc
4 changed files with 14 additions and 10 deletions

View file

@ -11,21 +11,25 @@ jobs:
runs-on: ubuntu-18.04
steps:
- name: musl-tools
run: |
sudo apt-get install musl-tools
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: x86_64-unknown-linux-musl
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --release --target x86_64-unknown-linux-musl
- name: Upload binary to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/dispenser
file: target/x86_64-unknown-linux-musl/release/dispenser
asset_name: dispenser
tag: ${{ github.ref }}