Skip to content

Commit

Permalink
feat: update npm dependency publish workflow and version
Browse files Browse the repository at this point in the history
- Update the 'npm_dependency_publish.yml' to use dynamic input names instead of merging multiple artifacts
- Comment out macOS related build targets in 'release_and_publish.yml'
- Bump up the package version from 1.0.8-alpha.3 to 1.0.9-alpha.3 in both Cargo.toml and Cargo.lock files
  • Loading branch information
rrrodzilla committed Jul 25, 2024
1 parent 1e77999 commit d4e62dd
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm_dependency_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
name: ${{ inputs.name }}
- name: Extract Binary
run: |
# Create directories
Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ jobs:
ext: tar.gz
on: ubuntu-latest
artifact: paseto_cli-linux-x64
- target: x86_64-apple-darwin
os: darwin
arch: x64
ext: tar.gz
on: macos-latest
artifact: paseto_cli-darwin-x64
- target: aarch64-apple-darwin
os: darwin
arch: aarch64
ext: tar.gz
on: macos-latest
artifact: paseto_cli-darwin-aarch64
# - target: x86_64-apple-darwin
# os: darwin
# arch: x64
# ext: tar.gz
# on: macos-latest
# artifact: paseto_cli-darwin-x64
# - target: aarch64-apple-darwin
# os: darwin
# arch: aarch64
# ext: tar.gz
# on: macos-latest
# artifact: paseto_cli-darwin-aarch64
# - target: x86_64-pc-windows-msvc
# os: win32
# arch: x64
Expand Down Expand Up @@ -154,14 +154,14 @@ jobs:
name: paseto_cli-linux-x64
os: linux
cpu: x64
- ext: tar.gz
name: paseto_cli-darwin-x64
os: darwin
cpu: x64
- ext: tar.gz
name: paseto_cli-darwin-aarch64
os: darwin
cpu: aarch64
# - ext: tar.gz
# name: paseto_cli-darwin-x64
# os: darwin
# cpu: x64
# - ext: tar.gz
# name: paseto_cli-darwin-aarch64
# os: darwin
# cpu: aarch64
# - ext: zip
# name: paseto_cli-win32-x64
# os: win32
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.8-alpha.3"
version = "1.0.9-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 d4e62dd

Please sign in to comment.