commit 012a0646e8a011c3668a446813cea3d4f345e9a0 parent 180910aee06eb023d219202a069752336b0b5330 Author: finwo <finwo@pm.me> Date: Sat, 28 Jan 2023 16:11:17 +0100 Added minimal install.sh & action to include it Diffstat:
| A | action.yml | | | 5 | +++++ |
| A | scripts/install.sh | | | 4 | ++++ |
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/action.yml b/action.yml @@ -0,0 +1,5 @@ +name: Setup DEP package manager +description: Installs the DEP package manager into the runner + +runs: + main: scripts/install.sh diff --git a/scripts/install.sh b/scripts/install.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +curl --location https://raw.githubusercontent.com/finwo/dep/master/dist/dep --output /usr/local/bin/dep +chmod +x /usr/local/bin/dep