-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
battlmonstr
committed
Nov 22, 2023
1 parent
10afda9
commit 2e3eabd
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,24 @@ | ||
version: 2.1 | ||
|
||
jobs: | ||
release: | ||
parameters: | ||
resource_class: | ||
type: string | ||
machine: | ||
image: ubuntu-2204:2023.04.2 | ||
resource_class: <<parameters.resource_class>> | ||
steps: | ||
- checkout | ||
- run: | ||
command: ./ci/release.sh | ||
|
||
workflows: | ||
version: 2 | ||
release_linux_builder: | ||
when: | ||
or: | ||
- matches: { pattern: "^release\\/.+$", value: <<pipeline.git.branch>> } | ||
jobs: | ||
- release: | ||
resource_class: arm.2xlarge |