Skip to content

Commit

Permalink
wip: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jku committed Sep 21, 2023
1 parent dd866a3 commit bc0556f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions actions/upload-repository-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,22 @@ runs:
tuf-on-ci-build-repository --metadata build/${{inputs.metadata_path}} --artifacts build/${{inputs.artifacts_path}}
find build -type f | xargs ls -lh
echo gh_pages input is ${{ inputs.gh_pages }}
shell: bash

- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
if: inputs.gh_pages == false
if: ${{ inputs.gh_pages == false }}
with:
name: metadata
path: build/${{inputs.metadata_path}}/*

- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
if: inputs.gh_pages == false
if: ${{ inputs.gh_pages == false }}
with:
name: artifacts
path: build/${{inputs.artifacts_path}}/*

- uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0
if: inputs.gh_pages == true
if: ${{ inputs.gh_pages == true }}
with:
path: build/*

0 comments on commit bc0556f

Please sign in to comment.