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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
29 changes: 29 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -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<version> 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
Loading