Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cli-package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, macos-14, macos-15, macos-26]
os: [macos-14, macos-15, macos-15-intel, macos-26]

steps:
- name: Checkout code
Expand All @@ -25,7 +25,7 @@ jobs:
run: |
arch=$(uname -m)
echo "Running on architecture: $arch"
if [[ "${{ matrix.os }}" == "macos-13" && "$arch" != "x86_64" ]]; then
if [[ "${{ matrix.os }}" == "macos-15-intel" && "$arch" != "x86_64" ]]; then
echo "Error: Expected x86_64 architecture for macOS 13"
exit 1
elif [[ "${{ matrix.os }}" =~ "macos-1[45]" && "$arch" != "arm64" ]]; then
Expand Down
6 changes: 3 additions & 3 deletions phase.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class Phase < Formula
desc "Securely manage your secrets and environment variables with Phase."
homepage "https://github.com/phasehq/cli"
version "1.21.1"
version "1.21.2"

on_macos do
on_arm do
url "https://github.com/phasehq/cli/releases/download/v#{version}/phase_cli_macos_arm64_#{version}.zip"
sha256 "5fb52e4e3dae4f18cbd321523a8350efe48c6e4a5f1309596c367ba831710341"
sha256 "029e10c6531b33a7750227d7e7ee05f257f766d805e7e36a983b45ba3b9f8f9d"
end

on_intel do
url "https://github.com/phasehq/cli/releases/download/v#{version}/phase_cli_macos_amd64_#{version}.zip"
sha256 "334757528a3513a910ead8f7693fbe4b16a3afaae7a88d1ef878e89195c119c2"
sha256 "bac807756f584dd6f064cacf3cdbae889b901f25f747974332c8efd19b45d26e"
end
end

Expand Down
Loading