diff --git a/LICENSE b/LICENSE index 915e587..22f50bc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 BananaBlitz contributors +Copyright (c) 2026 Adam Kostarelas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/justfile b/justfile new file mode 100644 index 0000000..e878b19 --- /dev/null +++ b/justfile @@ -0,0 +1,29 @@ +# List available commands +default: + @just --list + +# Generate BananaBlitz.xcodeproj from project.yml (requires xcodegen) +[group("dev")] +setup: + xcodegen generate + +# Build and run the unit tests (unsigned Debug, same as CI) +[group("dev")] +test: + xcodebuild test -scheme BananaBlitz -destination 'platform=macOS' -configuration Debug CODE_SIGN_IDENTITY="-" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + +# Tag v and push it to trigger the release workflow +[group("ship")] +release version: + git tag "v{{version}}" + git push origin "v{{version}}" + +# Build, sign, notarize and package the DMG locally (needs Developer ID + notary env) +[group("ship")] +release-local: + ./Scripts/release.sh + +# Remove build and release outputs +[group("dev")] +clean: + rm -rf dist TestResults.xcresult