diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ae4c28..44c99ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,18 +19,22 @@ jobs: run: | version=${GITHUB_REF#refs/tags/v} echo "version=$version" >> $GITHUB_ENV + shell: bash - name: Debug Version run: echo "Version is ${{ env.version }}" + shell: bash - name: Extract Date id: extract_date run: | date=$(date +'%Y-%m-%d') echo "date=$date" >> $GITHUB_ENV + shell: bash - name: Debug Date run: echo "Date is ${{ env.date }}" + shell: bash - name: Create Changelog File id: create-changelog @@ -57,6 +61,7 @@ jobs: - name: Check if Changelog Exists run: cat changelog.md + shell: bash - name: Create GitHub Release id: create-release @@ -100,6 +105,7 @@ jobs: run: | version=${GITHUB_REF#refs/tags/v} echo "version=$version" >> $GITHUB_ENV + shell: bash - uses: taiki-e/upload-rust-binary-action@v1 with: diff --git a/Cargo.lock b/Cargo.lock index 5cec6a4..93ea609 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,7 +98,7 @@ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "genp" -version = "1.0.14" +version = "1.0.15" dependencies = [ "clap", "rand", diff --git a/Cargo.toml b/Cargo.toml index 89c7214..98c20c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genp" -version = "1.0.14" +version = "1.0.15" description = "A simple Generator for PINs and Passwords" authors = ["comboom.sucht","mcpeaps_HD"] edition = "2021"