From a81113f960f0e1766e70c84bd740455d178efb3e Mon Sep 17 00:00:00 2001 From: Rudra Gupta Date: Fri, 27 Sep 2024 10:41:34 -0400 Subject: [PATCH] feat: add install step Signed-off-by: Rudra Gupta --- .github/workflows/check-compliance.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-compliance.yml b/.github/workflows/check-compliance.yml index 58c5513..07c6491 100644 --- a/.github/workflows/check-compliance.yml +++ b/.github/workflows/check-compliance.yml @@ -14,9 +14,15 @@ jobs: install: runs-on: ubuntu-latest steps: - - name: Download and run Privateer install script + - name: Download Privateer install script run: | - curl -sSL https://raw.githubusercontent.com/privateerproj/privateer/03ced90caae9f3c9203eb7f82f2c46ccf2ff15fc/install.sh | bash + curl -sSL https://raw.githubusercontent.com/privateerproj/privateer/03ced90caae9f3c9203eb7f82f2c46ccf2ff15fc/install.sh -o install_privateer.sh + + - name: Set execute permissions on install script + run: chmod +x install_privateer.sh + + - name: Run Privateer install script + run: bash ./install_privateer.sh - name: Verify Privateer installation run: |