Add release branches to CRT build pipeline

This change will allow for release branches `release/<MAJOR>.<MINOR>.x`
to be built add uploaded to the CRT build tool chain, which can then be
promoted and released publicly if needed.
pull/12245/head
Wilken Rivera 3 years ago
parent 65bd40c750
commit 93400ed9dd

@ -6,7 +6,13 @@
name: build
on: [ workflow_dispatch, push, workflow_call ]
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
- release/**
env:
REPO_NAME: "packer"

@ -10,6 +10,7 @@ project "packer" {
repository = "packer"
release_branches = [
"main",
"release/**"
]
}
}

Loading…
Cancel
Save