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
|
run: echo Placeholder Job
|
||||||
- name: Check if Version in Cargo.toml matches Tag
|
- name: Check if Version in Cargo.toml matches Tag
|
||||||
run: |
|
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
|
if test $VERSION != "${{ github.ref_name }}"; then
|
||||||
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
||||||
exit 1
|
exit 1
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -281,7 +281,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ascendance-of-a-bookworm-bot"
|
name = "ascendance-of-a-bookworm-bot"
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"confy",
|
"confy",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ascendance-of-a-bookworm-bot"
|
name = "ascendance-of-a-bookworm-bot"
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
Loading…
Reference in a new issue