Skip to content

Commit

Permalink
fix(actions): debug download artifact action
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtkeller committed Jul 10, 2024
1 parent 98f1ffe commit 815c2c3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
- name: Environment setup
uses: ./.github/actions/setup

- name: review compliance directory
run: ls -al ./compliance/
shell: bash

- name: remove overlapping file
run: rm ./compliance/oscal-assessment-results.yaml
shell: bash
Expand All @@ -43,7 +47,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: ${{ inputs.flavor }}-assessment-results
path: ./compliance/oscal-assessment-results.yaml
path: ./compliance

Check failure on line 51 in .github/workflows/compliance.yaml

View workflow job for this annotation

GitHub Actions / lint-check

51:1 [trailing-spaces] trailing spaces
- name: review compliance directory again
run: ls -al ./compliance/
shell: bash

- name: Evaluate compliance
id: compliance-evaluation
Expand Down

0 comments on commit 815c2c3

Please sign in to comment.