12
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2026-05-16 05:00:31 +00:00

refactor makefile

This commit is contained in:
Srikrishna Iyer 2026-05-07 21:23:35 +05:30
parent a53996aeaf
commit 5305662f7f
No known key found for this signature in database
GPG key ID: 212F890C328D4059
3 changed files with 19 additions and 22 deletions

View file

@ -206,10 +206,9 @@ jobs:
- name: Generate TLS Certificates
if: ${{ !env.ACT }}
run: |
go install github.com/cloudflare/cfssl/cmd/cfssl@v1.6.5
go install github.com/cloudflare/cfssl/cmd/cfssljson@v1.6.5
GOPATH_BIN="$(go env GOPATH)/bin"
export PATH="$GOPATH_BIN:$PATH"
curl -sSfL https://github.com/cloudflare/cfssl/releases/download/v1.6.5/cfssl_1.6.5_linux_amd64 -o /usr/local/bin/cfssl
curl -sSfL https://github.com/cloudflare/cfssl/releases/download/v1.6.5/cfssljson_1.6.5_linux_amd64 -o /usr/local/bin/cfssljson
chmod +x /usr/local/bin/cfssl /usr/local/bin/cfssljson
./scripts/gen-tls-certs.sh
cat .build/e2e-tls.env >> "$GITHUB_ENV"