mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 01:32:33 +00:00
* Pin CI tool versions * Protoc-gen-go-grpc should be v1.5.1 * enumer * More GHAs * string * misspell * gopath * gopath * revert makefile stuff * Export path * path equals? * Experimentation * Go mod tidy
64 lines
2.1 KiB
YAML
64 lines
2.1 KiB
YAML
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
---
|
|
name: Set up gosimports from Github releases
|
|
description: Set up gosimports from Github releases
|
|
|
|
inputs:
|
|
destination:
|
|
description: "Where to install the gosimports binary (default: $HOME/bin/gosimports)"
|
|
type: boolean
|
|
default: "$HOME/bin/gosimports"
|
|
version:
|
|
description: "The version to install (default: latest)"
|
|
type: string
|
|
default: "v0.3.8"
|
|
|
|
outputs:
|
|
destination:
|
|
description: Where the installed gosimports binary is
|
|
value: ${{ steps.install.outputs.destination }}
|
|
destination-dir:
|
|
description: The directory where the installed gosimports binary is
|
|
value: ${{ steps.install.outputs.destination-dir }}
|
|
version:
|
|
description: The installed version of gosimports
|
|
value: ${{ steps.install.outputs.version }}
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- id: install
|
|
shell: bash
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: |
|
|
VERSION=$(./.github/scripts/retry-command.sh gh release list -R rinchsan/gosimports --exclude-drafts --exclude-pre-releases | grep ${{ inputs.version }} | cut -f1)
|
|
|
|
mkdir -p $(dirname ${{ inputs.destination }})
|
|
DESTINATION="$(readlink -f "${{ inputs.destination }}")"
|
|
DESTINATION_DIR="$(dirname "$DESTINATION")"
|
|
echo "$DESTINATION_DIR" >> "$GITHUB_PATH"
|
|
|
|
{
|
|
echo "destination=$DESTINATION"
|
|
echo "version=$VERSION"
|
|
echo "destination-dir=$DESTINATION_DIR"
|
|
} | tee -a "$GITHUB_OUTPUT"
|
|
|
|
ARCH="$(echo "$RUNNER_ARCH" | tr '[:upper:]' '[:lower:]')"
|
|
OS="$(echo "$RUNNER_OS" | tr '[:upper:]' '[:lower:]')"
|
|
if [ "$ARCH" = "x64" ]; then
|
|
export ARCH="amd64"
|
|
fi
|
|
if [ "$OS" = "macos" ]; then
|
|
export OS="darwin"
|
|
fi
|
|
|
|
mkdir -p tmp
|
|
./.github/scripts/retry-command.sh gh release download "$VERSION" --clobber -p "gosimports_*_${OS}_${ARCH}.tar.gz" -O tmp/gosimports.tgz -R rinchsan/gosimports
|
|
pushd tmp && tar -xvf gosimports.tgz && popd
|
|
mv tmp/gosimports "$DESTINATION"
|
|
rm -rf tmp
|