-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terraform-provider: create release in provider repo on Constellation …
…release (#2686) * Create release in Terraform provider repo with provider binaries * Set target_commitish to input ref for easier release workflow * Rename release-cli workflow to draft-release * Update release guide --------- Signed-off-by: Daniel Weiße <[email protected]>
- Loading branch information
1 parent
138057a
commit 22dcde8
Showing
6 changed files
with
222 additions
and
168 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,60 @@ | ||
name: Download release binaries | ||
description: "Downloads all binaries created by a different job (and therefore not available in this job) in the release pipeline." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Download CLI binaries darwin-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: constellation-darwin-amd64 | ||
|
||
- name: Download CLI binaries darwin-arm64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: constellation-darwin-arm64 | ||
|
||
- name: Download CLI binaries linux-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: constellation-linux-amd64 | ||
|
||
- name: Download CLI binaries linux-arm64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: constellation-linux-arm64 | ||
|
||
- name: Download CLI binaries windows-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: constellation-windows-amd64 | ||
|
||
- name: Download Terraform module | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-module | ||
|
||
- name: Download Terraform provider binary darwin-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-provider-constellation-darwin-amd64 | ||
|
||
- name: Download Terraform provider binary darwin-arm64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-provider-constellation-darwin-arm64 | ||
|
||
- name: Download Terraform provider binary linux-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-provider-constellation-linux-amd64 | ||
|
||
- name: Download Terraform provider binary linux-arm64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-provider-constellation-linux-arm64 | ||
|
||
- name: Download Terraform provider binary windows-amd64 | ||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: terraform-provider-constellation-windows-amd64 |
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
Oops, something went wrong.