Skip to content

Commit

Permalink
feat: add install step
Browse files Browse the repository at this point in the history
Signed-off-by: Rudra Gupta <[email protected]>
  • Loading branch information
grudra7714 committed Sep 27, 2024
1 parent d2f7a4d commit a81113f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/check-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit a81113f

Please sign in to comment.