bump version v0.5.3

This commit is contained in:
Clément DOUIN
2022-02-03 16:22:06 +01:00
parent 8c54097286
commit c5ed252f33
4 changed files with 24 additions and 14 deletions
+13 -11
View File
@@ -21,9 +21,9 @@ jobs:
release_name: ${{ github.ref }}
draft: false
prerelease: false
deploy_binaries:
needs: create_release
deploy_github:
runs-on: ${{ matrix.os }}
needs: create_release
strategy:
fail-fast: false
matrix:
@@ -40,7 +40,9 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
toolchain: stable
override: true
- name: Check project
uses: actions-rs/cargo@v1
with:
@@ -65,19 +67,19 @@ jobs:
asset_path: himalaya.tar.gz
asset_name: himalaya-${{ matrix.os_name }}.tar.gz
asset_content_type: application/gzip
deploy_crate:
deploy_crates:
runs-on: ubuntu-latest
needs: create_release
runs-on: linux
environment: deployment
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check project
uses: actions-rs/cargo@v1
profile: minimal
toolchain: stable
override: true
- uses: katyo/publish-crates@v1
with:
command: check
- name: Publish package to crates.io
run: cargo publish
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}