diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4bd37e..2458354 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,11 @@ jobs: version=${GITHUB_REF#refs/tags/v} echo "version=$version" >> $GITHUB_ENV + - name: Debug Version + run: echo "Version is ${{ env.version }}" + - name: Create Changelog File + id: create-changelog uses: 1arp/create-a-file-action@0.4.5 with: file: changelog.md @@ -31,7 +35,11 @@ jobs: With this release, we've added some extra spice to make things even more fun. Who needs boring old passwords when you can have funky fresh ones straight from the Genp factory? So, what are you waiting for? Grab your copy and start generating passwords that'll make your friends go "Whoa, how'd you come up with that?" 🎉 - - id: create-release + - name: Check if Changelog Exists + run: cat changelog.md + + - name: create-release + id: create-release uses: taiki-e/create-gh-release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 22d29ee..dc9111f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,7 +98,7 @@ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "genp" -version = "1.0.11" +version = "1.0.12" dependencies = [ "clap", "rand", diff --git a/Cargo.toml b/Cargo.toml index b0833d3..92550e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genp" -version = "1.0.11" +version = "1.0.12" description = "A simple Generator for PINs and Passwords" authors = ["comboom.sucht","mcpeaps_HD"] edition = "2021"