diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 19311fc..40fd834 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,6 +31,11 @@ jobs: command: build args: --release --target=aarch64-apple-darwin + - uses: actions-rs/cargo@v1 + with: + command: publish + args: --token=${{ secrets.CRATES_TOKEN }} + - name: Universal binary run: | mkdir -p target/universal-apple-darwin/release diff --git a/Cargo.lock b/Cargo.lock index b881f2a..cacc42d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -101,7 +101,7 @@ dependencies = [ [[package]] name = "dirstat-rs" -version = "0.3.6" +version = "0.3.7" dependencies = [ "atty", "pretty-bytes", diff --git a/Cargo.toml b/Cargo.toml index bd6ac9b..2745fa6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dirstat-rs" -version = "0.3.6" +version = "0.3.7" authors = ["scullionw "] edition = "2018" license = "MIT"