Skip to content

Commit

Permalink
chore: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed Feb 4, 2023
1 parent 77cb956 commit ceb52fc
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 22 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,26 @@ jobs:
echo "Tag does not match code version, stopping."
exit -1
fi
echo "Releasing $VERSION"
echo "Releasing v$VERSION"
build:
crates:
needs:
- check-bump
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: ${{ runner.os }}
- name: Publish
uses: actions-rs/cargo@v1
with:
use-cross: false
command: publish
args: "--locked"

binaries:
needs:
- check-bump
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -57,9 +74,7 @@ jobs:
- name: Compress
run: |
mv "target/${{ matrix.target }}/release/whiz${{ matrix.suffix }}" .
tar czvf \
"whiz-${{ github.ref_name }}-${{ matrix.target }}.tar.gz" \
"whiz${{ matrix.suffix }}"
tar czvf "whiz-${{ github.ref_name }}-${{ matrix.target }}.tar.gz" "whiz${{ matrix.suffix }}"
- name: Upload
uses: svenstaro/upload-release-action@v2
with:
Expand Down
48 changes: 35 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "whiz"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Modern DAG/tasks runner for multi-platform monorepos."
license = "MPL-2.0"
Expand All @@ -10,13 +10,13 @@ actix = "0.13.0"
ansi-to-tui = "2.0.0"
anyhow = "1.0.68"
chrono = "0.4.23"
clap = { version = "4.1.1", features = ["derive"] }
crossterm = "0.25.0"
clap = { version = "4.1.4", features = ["derive"] }
crossterm = "0.26.0"
dotenv-parser = "0.1.3"
globset = "0.4.10"
ignore = "0.4.20"
indexmap = { version = "1.9.2", features = ["serde"] }
notify = "5.0.0"
notify = "5.1.0"
path-absolutize = "3.0.14"
path-clean = "0.1.0"
regex = "1.7.1"
Expand Down

0 comments on commit ceb52fc

Please sign in to comment.