-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add extra parameters to release and upload jobs * Some extra fixes * Fix typo * Add release test * Add debug * Remove quotes from @ * Change order of params * Fix error * Disable shellcheck * Change script release structure * Update rlease test to verify additional_args * Update to fix additional args * Use a different arg to make it more simple
- Loading branch information
1 parent
1291e52
commit f64c929
Showing
8 changed files
with
66 additions
and
19 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: 2.1 | ||
orbs: | ||
github-cli: {} | ||
orb-tools: circleci/[email protected] | ||
orb-tools: circleci/orb-tools@12.2.0 | ||
|
||
filters: &filters | ||
tags: | ||
|
@@ -65,6 +65,14 @@ workflows: | |
parameters: | ||
executor: ["docker-x86-debian", "apple-silicon-14", "apple-silicon-15", "linuxvm-arm-ubuntu-2004", "linuxvm-x86-ubuntu-2004", "linuxvm-arm-ubuntu-2204", "linuxvm-x86-ubuntu-2204", "linuxvm-arm-ubuntu-2404", "linuxvm-x86-ubuntu-2404"] | ||
version: [2.27.0, 2.40.0, "latest"] # 2.27.0 is the last version that uses ".tar.gz" instead of ".zip" for macOS | ||
- github-cli/release: | ||
tag: "test-release-$CIRCLE_SHA1" | ||
title: Test | ||
prerelease: true | ||
files: README.md | ||
context: orb-developer | ||
token: GHI_TOKEN | ||
additional_args: --generate-notes | ||
- orb-tools/pack: | ||
filters: *release-filters | ||
- orb-tools/publish: | ||
|
@@ -91,22 +99,22 @@ executors: | |
resource_class: macos.m1.medium.gen1 | ||
linuxvm-arm-ubuntu-2004: | ||
machine: | ||
image: ubuntu-2004:2024.05.1 | ||
image: ubuntu-2004:2024.08.1 | ||
resource_class: arm.medium | ||
linuxvm-x86-ubuntu-2004: | ||
machine: | ||
image: ubuntu-2004:2024.05.1 | ||
image: ubuntu-2004:2024.08.1 | ||
linuxvm-arm-ubuntu-2204: | ||
machine: | ||
image: ubuntu-2204:2024.05.1 | ||
image: ubuntu-2204:2024.08.1 | ||
resource_class: arm.medium | ||
linuxvm-x86-ubuntu-2204: | ||
machine: | ||
image: ubuntu-2204:2024.05.1 | ||
image: ubuntu-2204:2024.08.1 | ||
linuxvm-arm-ubuntu-2404: | ||
machine: | ||
image: ubuntu-2404:2024.05.1 | ||
image: ubuntu-2404:2024.08.1 | ||
resource_class: arm.medium | ||
linuxvm-x86-ubuntu-2404: | ||
machine: | ||
image: ubuntu-2404:2024.05.1 | ||
image: ubuntu-2404:2024.08.1 |
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
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
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
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
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
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
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