From 79c5c0fbcb0b7eb0350880ecf0c1b05172791d18 Mon Sep 17 00:00:00 2001 From: Roland Rodriguez Date: Wed, 24 Jul 2024 18:03:33 -0600 Subject: [PATCH] feat: Update GitHub Actions workflow and bump paseto_cli version - In the release_and_publish.yml workflow, added 'merge-multiple' option to 'Download Artifacts' step and replaced 'merge-multiple' with 'fail_on_unmatched_files' in 'Create Release and Upload Release Assets' step. - Bumped up the version of paseto_cli from 1.0.5-alpha.3 to 1.0.6-alpha.3 in both Cargo.lock and Cargo.toml files. --- .github/workflows/release_and_publish.yml | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_and_publish.yml b/.github/workflows/release_and_publish.yml index ccaa54c..9dd1241 100644 --- a/.github/workflows/release_and_publish.yml +++ b/.github/workflows/release_and_publish.yml @@ -109,6 +109,8 @@ jobs: steps: - name: Download Artifacts uses: actions/download-artifact@v4 + with: + merge-multiple: true - name: Create Release and Upload Release Assets uses: softprops/action-gh-release@v2 env: @@ -119,7 +121,7 @@ jobs: draft: false prerelease: true token: ${{ secrets.RELEASE_TOKEN }} - merge-multiple: true + fail_on_unmatched_files: true path: ./ diff --git a/Cargo.lock b/Cargo.lock index 7143846..14c3a76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -439,7 +439,7 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" [[package]] name = "paseto_cli" -version = "1.0.5-alpha.3" +version = "1.0.6-alpha.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index d7bdd6b..fb815eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paseto_cli" -version = "1.0.5-alpha.3" +version = "1.0.6-alpha.3" edition = "2021" description = "A command-line tool for generating and validating PASETO v4.local tokens" authors = ["Roland Rodriguez "]