File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed
Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -21,14 +21,17 @@ TEMP_DIR=$(mktemp -d)
2121
2222# macOS Intel (x86_64)
2323MACOS_INTEL_URL=" https://github.com/ozankasikci/fastcert/releases/download/v${VERSION} /fastcert-x86_64-apple-darwin.tar.gz"
24+ echo " Downloading macOS Intel..."
2425curl -sL " $MACOS_INTEL_URL " -o " $TEMP_DIR /macos-intel.tar.gz"
2526
2627# macOS Apple Silicon (aarch64)
2728MACOS_ARM_URL=" https://github.com/ozankasikci/fastcert/releases/download/v${VERSION} /fastcert-aarch64-apple-darwin.tar.gz"
29+ echo " Downloading macOS ARM..."
2830curl -sL " $MACOS_ARM_URL " -o " $TEMP_DIR /macos-arm.tar.gz"
2931
3032# Linux x86_64
3133LINUX_URL=" https://github.com/ozankasikci/fastcert/releases/download/v${VERSION} /fastcert-x86_64-unknown-linux-gnu.tar.gz"
34+ echo " Downloading Linux x86_64..."
3235curl -sL " $LINUX_URL " -o " $TEMP_DIR /linux.tar.gz"
3336
3437echo " 🔐 Calculating SHA256..."
4851
4952rm -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
5659mkdir -p homebrew
You can’t perform that action at this time.
0 commit comments