commit 371a7d824783e500d17e228a93e006ac49c29514 Author: Michael Housh Date: Sat Dec 7 10:40:16 2024 -0500 feat: Initial commit diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..53a6d00 --- /dev/null +++ b/action.yml @@ -0,0 +1,19 @@ +--- +name: 'Setup Just' +description: "Sets up 'casey/just' inside a workflow" +runs: + using: "composite" + steps: + - name: Setup MPR + shell: bash + run: | + wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' \ + | gpg --dearmor \ + | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null \ + && echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] \ + https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" \ + | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list \ + && sudo apt update + - name: Setup just. + shell: bash + run: sudo apt install -y just