mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -05:00
adf03ad76c
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
56 lines
2.1 KiB
YAML
56 lines
2.1 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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: constellation-darwin-amd64
|
|
|
|
- name: Download CLI binaries darwin-arm64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: constellation-darwin-arm64
|
|
|
|
- name: Download CLI binaries linux-amd64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: constellation-linux-amd64
|
|
|
|
- name: Download CLI binaries linux-arm64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: constellation-linux-arm64
|
|
|
|
- name: Download CLI binaries windows-amd64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: constellation-windows-amd64
|
|
|
|
- name: Download Terraform module
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: terraform-module
|
|
|
|
- name: Download Terraform provider binary darwin-amd64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: terraform-provider-constellation-darwin-amd64
|
|
|
|
- name: Download Terraform provider binary darwin-arm64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: terraform-provider-constellation-darwin-arm64
|
|
|
|
- name: Download Terraform provider binary linux-amd64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: terraform-provider-constellation-linux-amd64
|
|
|
|
- name: Download Terraform provider binary linux-arm64
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
name: terraform-provider-constellation-linux-arm64
|