mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05:00
22dcde86af
* 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 <dw@edgeless.systems>
61 lines
2.4 KiB
YAML
61 lines
2.4 KiB
YAML
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
|