From 46998a8c6928553347a9f44fa6b722533e02ad71 Mon Sep 17 00:00:00 2001 From: phiresky Date: Mon, 15 Jan 2024 23:27:36 +0100 Subject: [PATCH] 0.10.0 --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 610c391..11e2916 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,30 @@ on: tags: - "v[0-9]+.[0-9]+.[0-9]+*" jobs: + release: + name: release ${{ matrix.target }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - target: x86_64-pc-windows-gnu + archive: zip + - target: x86_64-unknown-linux-musl + archive: tar.zst + - target: x86_64-apple-darwin + archive: zip + steps: + - uses: actions/checkout@master + - name: Compile and release + uses: rust-build/rust-build.action@v1.4.4 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + RUSTTARGET: ${{ matrix.target }} + ARCHIVE_TYPES: ${{ matrix.archive }} + EXTRA_FILES: "README.md LICENSE" + create-release: name: create-release runs-on: ubuntu-latest diff --git a/Cargo.lock b/Cargo.lock index 1c73b34..e6b2943 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1318,7 +1318,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "ripgrep_all" -version = "1.0.0-alpha.5" +version = "0.10.0" dependencies = [ "anyhow", "async-compression 0.4.5", diff --git a/Cargo.toml b/Cargo.toml index 14d15ca..6b12e72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "AGPL-3.0-or-later" name = "ripgrep_all" readme = "README.md" repository = "https://github.com/phiresky/ripgrep-all" -version = "1.0.0-alpha.5" +version = "0.10.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html