Skip to content

Instantly share code, notes, and snippets.

@UrbanChrisy
Created January 29, 2025 17:29
Show Gist options
  • Select an option

  • Save UrbanChrisy/f2d40b4e19298c966c4436d0135e59f3 to your computer and use it in GitHub Desktop.

Select an option

Save UrbanChrisy/f2d40b4e19298c966c4436d0135e59f3 to your computer and use it in GitHub Desktop.
{
"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