Skip to content

Commit b24da90

Browse files
committed
fix: simplify release workflow to supported platforms only
1 parent 731b2c9 commit b24da90

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,6 @@ jobs:
2727
target: x86_64-unknown-linux-gnu
2828
binary_name: fastcert
2929
asset_name: fastcert-x86_64-unknown-linux-gnu
30-
- os: ubuntu-latest
31-
target: aarch64-unknown-linux-gnu
32-
binary_name: fastcert
33-
asset_name: fastcert-aarch64-unknown-linux-gnu
34-
- os: windows-latest
35-
target: x86_64-pc-windows-msvc
36-
binary_name: fastcert.exe
37-
asset_name: fastcert-x86_64-pc-windows-msvc.exe
3830

3931
steps:
4032
- name: Checkout code

scripts/update-homebrew.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,17 @@ TEMP_DIR=$(mktemp -d)
2121

2222
# macOS Intel (x86_64)
2323
MACOS_INTEL_URL="https://github.com/ozankasikci/fastcert/releases/download/v${VERSION}/fastcert-x86_64-apple-darwin.tar.gz"
24+
echo " Downloading macOS Intel..."
2425
curl -sL "$MACOS_INTEL_URL" -o "$TEMP_DIR/macos-intel.tar.gz"
2526

2627
# macOS Apple Silicon (aarch64)
2728
MACOS_ARM_URL="https://github.com/ozankasikci/fastcert/releases/download/v${VERSION}/fastcert-aarch64-apple-darwin.tar.gz"
29+
echo " Downloading macOS ARM..."
2830
curl -sL "$MACOS_ARM_URL" -o "$TEMP_DIR/macos-arm.tar.gz"
2931

3032
# Linux x86_64
3133
LINUX_URL="https://github.com/ozankasikci/fastcert/releases/download/v${VERSION}/fastcert-x86_64-unknown-linux-gnu.tar.gz"
34+
echo " Downloading Linux x86_64..."
3235
curl -sL "$LINUX_URL" -o "$TEMP_DIR/linux.tar.gz"
3336

3437
echo "🔐 Calculating SHA256..."
@@ -48,9 +51,9 @@ fi
4851

4952
rm -rf "$TEMP_DIR"
5053

51-
echo " macOS Intel SHA256: $MACOS_INTEL_SHA256"
52-
echo " macOS ARM SHA256: $MACOS_ARM_SHA256"
53-
echo " Linux SHA256: $LINUX_SHA256"
54+
echo " macOS Intel SHA256: $MACOS_INTEL_SHA256"
55+
echo " macOS ARM SHA256: $MACOS_ARM_SHA256"
56+
echo " Linux SHA256: $LINUX_SHA256"
5457

5558
# Create homebrew directory if it doesn't exist
5659
mkdir -p homebrew

0 commit comments

Comments
 (0)