-
-
Notifications
You must be signed in to change notification settings - Fork 50
New build task feature: Build versioning #294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
FejZa
wants to merge
23
commits into
main
Choose a base branch
from
feature/unity-versioning-task
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
cf0dac5
Init new Unity Versioning Task
FejZa beab23d
Define entry point
FejZa 1be259a
Set up dependencies
FejZa 2406153
Revert, this will actually be a configuraiton option of the build task
FejZa 896307e
Define inputs
FejZa cf16d4c
Implement versioninig step
FejZa 14868f3
Set output variables and build tag based on pattern
FejZa ab0ee97
Update lib dependency
FejZa 38f43a9
Implement versioning
FejZa 6ca5690
Only create tag if commit was made
FejZa 3a81688
Add git operations
FejZa cda0e15
Make commit message an input variable
FejZa 088982b
Use regex to replace placeholders in commit message and git tag
FejZa cd5a9ad
Adjust default commit message to include build number
FejZa 168c5e4
Split pre and post build steps
FejZa 739ac64
Remove duplciate code
FejZa c501370
Make sure to push to source branch and not empty HEAD
FejZa ceda828
Fix git command args
FejZa 4a556b4
Use switch command instead of fetch + checkout
FejZa 696d21f
Make sure to swtitch branch before making changes
FejZa c03b6d4
Fix missing -c arg on switch, only commit changes to project settings
FejZa c57b60d
Feature complete
FejZa 4bb5ad5
Ensure we add the skip ci flag when creating a commit
FejZa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export enum BuildPlatform { | ||
Standalone = "standalone", | ||
Windows32 = "Win", | ||
Windows64 = "Win64", | ||
OSXUniversal = "OSXUniversal", | ||
Linux = "Linux", | ||
Linux64 = "Linux64", | ||
LinuxUniversal = "LinuxUniversal", | ||
IOS = "iOS", | ||
Android = "Android", | ||
Web = "Web", | ||
WebStreamed = "WebStreamed", | ||
WebGL = "WebGL", | ||
XboxOne = "XboxOne", | ||
PS4 = "PS4", | ||
WindowsStoreApps = "WindowsStoreApps", | ||
Switch = "Switch", | ||
N3DS = "N3DS", | ||
TVOS = "tvOS", | ||
VisionOS = "visionos", | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.