Some checks failed
CI/CD Pipeline / Test (push) Failing after 22m19s
CI/CD Pipeline / Security Scan (push) Failing after 5m57s
CI/CD Pipeline / Build (amd64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (amd64, linux) (push) Has been skipped
CI/CD Pipeline / Build (amd64, windows) (push) Has been skipped
CI/CD Pipeline / Build (arm64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (arm64, linux) (push) Has been skipped
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Create Release (push) Has been skipped
8 lines
133 B
Bash
Executable File
8 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
# Build script for SubConverter-Go
|
|
set -e
|
|
|
|
echo "🔨 Building SubConverter-Go..."
|
|
make build
|
|
echo "✅ Build complete!"
|