Actions Path Fix + 2.0.1 Release
All checks were successful
All checks were successful
This commit is contained in:
parent
40e142ccc7
commit
b10455a30f
3 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ jobs:
|
|||
run: echo Placeholder Job
|
||||
- name: Check if Version in Cargo.toml matches Tag
|
||||
run: |
|
||||
VERSION=$(cat src/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
||||
VERSION=$(cat Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
||||
if test $VERSION != "${{ github.ref_name }}"; then
|
||||
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
||||
exit 1
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -281,7 +281,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ascendance-of-a-bookworm-bot"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"confy",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ascendance-of-a-bookworm-bot"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
Loading…
Reference in a new issue