mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 08:29:33 -05:00
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
|