Skip to content

Commit

Permalink
feat: update tf modules
Browse files Browse the repository at this point in the history
Signed-off-by: Rudra Gupta <[email protected]>
  • Loading branch information
grudra7714 committed Sep 26, 2024
1 parent c567e91 commit d981768
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/check-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
./privateer help
- name: 'Tar files'
run: tar -cvf test_harness.tar privateer/privateer
run: |
cd privateer
tar -cvf test_harness.tar privateer
- name: Archive release artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -82,7 +84,9 @@ jobs:
ls
- name: 'Tar files'
run: tar -cvf azure_blob.tar raid-azure-blob-storage/ABS
run: |
cd raid-azure-blob-storage
tar -cvf azure_blob.tar ABS
- name: Archive release artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -158,7 +162,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: release-artifacts
Expand All @@ -170,10 +174,10 @@ jobs:
- name: RUN ls
run: |
ls -al
tar xvf test_harness.tar
tar xvf azure_blob.tar
tar -xf test_harness.tar
tar -xf azure_blob.tar
ls -al
- name: RUN sally command
run: |
./privateer/privateer sally ./raid-azure-blob-storage/ABS -c config.yml
./privateer sally ./ABS -c config.yml

0 comments on commit d981768

Please sign in to comment.