Created
January 29, 2025 17:29
-
-
Save UrbanChrisy/f2d40b4e19298c966c4436d0135e59f3 to your computer and use it in GitHub Desktop.
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
| { | |
| "id": "build", | |
| "name": "Local Build", | |
| "description": "Local build workflow for the application", | |
| "type": "BUILD", | |
| "trigger": ["MANUAL"], | |
| "env": { | |
| "ENV": "development" | |
| }, | |
| "steps": [ | |
| { | |
| "name": "Build", | |
| "run": "sleep 30" | |
| }, | |
| { | |
| "name": "Tag build", | |
| "run": "git tag build/${{ BUILD_NUMBER }} && git push origin build/${{ BUILD_NUMBER }}", | |
| "always_run": true | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment