From 59084b6da090ba56e8e33c59d9b666f6e98e5513 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 26 Jan 2025 09:45:05 -0500 Subject: [PATCH] feat: Remove prebuilt mpr, trying to install just in ci --- action.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/action.yml b/action.yml index be135c4..f91a6c8 100644 --- a/action.yml +++ b/action.yml @@ -4,16 +4,16 @@ 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 --allow-insecure-repositories + # - 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 --allow-insecure-repositories - name: Setup just. shell: bash - run: sudo apt install -y just + run: sudo apt update && apt install -y just