Skip to content

Commit

Permalink
feat: Update GitHub Actions workflow and bump paseto_cli version
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
rrrodzilla committed Jul 25, 2024
1 parent 1cedc69 commit 79c5c0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -119,7 +121,7 @@ jobs:
draft: false
prerelease: true
token: ${{ secrets.RELEASE_TOKEN }}
merge-multiple: true
fail_on_unmatched_files: true
path: ./


Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <roland@govcraft.ai>"]
Expand Down

0 comments on commit 79c5c0f

Please sign in to comment.