-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
148 lines (131 loc) · 4.93 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#
# Copyright 2023 The OpenVEX Authors
# SPDX-License-Identifier: Apache-2.0
#
name: setup-vexctl
author: The OpenVEX Authors
description: 'Installs vexctl and includes it in your path'
branding:
icon: 'package'
color: 'blue'
# This is pinned to the last major release, we have to bump it for each action version.
inputs:
vexctl-release:
description: 'vexctl release version to be installed'
required: false
default: '0.3.0'
install-dir:
description: 'Where to install the vexctl binary'
required: false
default: '$HOME/.vexctl'
use-sudo:
description: 'set to true if install-dir location requires sudo privs'
required: false
default: 'false'
runs:
using: "composite"
steps:
- uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
with:
install-dir: ${{ inputs.install-dir }}
use-sudo: ${{ inputs.use-sudo }}
- shell: bash
run: |
#!/bin/bash
# vexctl install script
shopt -s expand_aliases
if [ -z "$NO_COLOR" ]; then
alias log_info="echo -e \"\033[1;32mINFO\033[0m:\""
alias log_error="echo -e \"\033[1;31mERROR\033[0m:\""
else
alias log_info="echo \"INFO:\""
alias log_error="echo \"ERROR:\""
fi
set -e
mkdir -p ${{ inputs.install-dir }}
trap "popd >/dev/null" EXIT
pushd ${{ inputs.install-dir }} > /dev/null
vexctl_executable_name='vexctl'
case ${{ runner.os }} in
Linux)
case ${{ runner.arch }} in
X64)
desired_vexctl_filename='vexctl-linux-amd64'
;;
ARM)
desired_vexctl_filename='vexctl-linux-arm'
;;
ARM64)
desired_vexctl_filename='vexctl-linux-arm64'
;;
*)
log_error "unsupported architecture $arch"
exit 1
;;
esac
;;
macOS)
case ${{ runner.arch }} in
X64)
desired_vexctl_filename='vexctl-darwin-amd64'
;;
ARM64)
desired_vexctl_filename='vexctl-darwin-arm64'
;;
*)
log_error "unsupported architecture $arch"
exit 1
;;
esac
;;
Windows)
case ${{ runner.arch }} in
X64)
desired_vexctl_filename='vexctl-windows-amd64.exe'
vexctl_executable_name=vexctl.exe
;;
*)
log_error "unsupported architecture $arch"
exit 1
;;
esac
;;
*)
log_error "unsupported architecture $arch"
exit 1
;;
esac
SUDO=
if "${{ inputs.use-sudo }}" == "true" && command -v sudo >/dev/null; then
SUDO=sudo
fi
semver='^([0-9]+\.){0,2}(\*|[0-9]+)$'
if [[ ${{ inputs.vexctl-release }} =~ $semver ]]; then
log_info "Custom vexctl version '${{ inputs.vexctl-release }}' requested"
else
log_error "Unable to validate requested vexctl version: '${{ inputs.vexctl-release }}'"
exit 1
fi
# Download custom vexctl
log_info "Downloading platform-specific version '${{ inputs.vexctl-release }}' of vexctl...\n https://github.com/openvex/vexctl/releases/download/v${{ inputs.vexctl-release }}/${desired_vexctl_filename}"
$SUDO curl -sL https://github.com/openvex/vexctl/releases/download/v${{ inputs.vexctl-release }}/${desired_vexctl_filename} -o ${vexctl_executable_name}
VEXCTL_CERT=https://github.com/openvex/vexctl/releases/download/v${{ inputs.vexctl-release }}/${desired_vexctl_filename}.pem
VEXCTL_SIG=https://github.com/openvex/vexctl/releases/download/v${{ inputs.vexctl-release }}/${desired_vexctl_filename}.sig
log_info "Using cosign to verify signature of desired vexctl version"
cosign verify-blob --certificate $VEXCTL_CERT --signature $VEXCTL_SIG \
--certificate-identity "https://github.com/openvex/vexctl/.github/workflows/release.yaml@refs/tags/v${{ inputs.vexctl-release }}" \
--certificate-oidc-issuer "https://token.actions.githubusercontent.com" ${vexctl_executable_name}
retVal=$?
if [[ $retVal -eq 0 ]]; then
$SUDO chmod +x ${vexctl_executable_name}
log_info "Installation complete!"
else
log_error "Unable to validate vexctl version: '${{ inputs.vexctl-release }}'"
exit 1
fi
- if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
run: echo "${{ inputs.install-dir }}" >> $GITHUB_PATH
shell: bash
- if: ${{ runner.os == 'Windows' }}
run: echo "${{ inputs.install-dir }}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: pwsh