Skip to content

Commit 46998a8

Browse files
committed
0.10.0
1 parent bc9108e commit 46998a8

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,30 @@ on:
2020
tags:
2121
- "v[0-9]+.[0-9]+.[0-9]+*"
2222
jobs:
23+
release:
24+
name: release ${{ matrix.target }}
25+
runs-on: ubuntu-latest
26+
strategy:
27+
fail-fast: false
28+
matrix:
29+
include:
30+
- target: x86_64-pc-windows-gnu
31+
archive: zip
32+
- target: x86_64-unknown-linux-musl
33+
archive: tar.zst
34+
- target: x86_64-apple-darwin
35+
archive: zip
36+
steps:
37+
- uses: actions/checkout@master
38+
- name: Compile and release
39+
uses: rust-build/[email protected]
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
with:
43+
RUSTTARGET: ${{ matrix.target }}
44+
ARCHIVE_TYPES: ${{ matrix.archive }}
45+
EXTRA_FILES: "README.md LICENSE"
46+
2347
create-release:
2448
name: create-release
2549
runs-on: ubuntu-latest

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "AGPL-3.0-or-later"
1111
name = "ripgrep_all"
1212
readme = "README.md"
1313
repository = "https://github.com/phiresky/ripgrep-all"
14-
version = "1.0.0-alpha.5"
14+
version = "0.10.0"
1515

1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1717

0 commit comments

Comments
 (0)