mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-22 21:31:14 -05:00
3765cb0762
* deps: update actions/upload-artifact action to v4 * deps: update actions/download-artifacts action to v4 --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> 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@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: constellation-darwin-amd64
|
|
|
|
- name: Download CLI binaries darwin-arm64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: constellation-darwin-arm64
|
|
|
|
- name: Download CLI binaries linux-amd64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: constellation-linux-amd64
|
|
|
|
- name: Download CLI binaries linux-arm64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: constellation-linux-arm64
|
|
|
|
- name: Download CLI binaries windows-amd64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: constellation-windows-amd64
|
|
|
|
- name: Download Terraform module
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: terraform-module
|
|
|
|
- name: Download Terraform provider binary darwin-amd64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: terraform-provider-constellation-darwin-amd64
|
|
|
|
- name: Download Terraform provider binary darwin-arm64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: terraform-provider-constellation-darwin-arm64
|
|
|
|
- name: Download Terraform provider binary linux-amd64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: terraform-provider-constellation-linux-amd64
|
|
|
|
- name: Download Terraform provider binary linux-arm64
|
|
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
|
|
with:
|
|
name: terraform-provider-constellation-linux-arm64
|