Skip to content

Commit

Permalink
Merge pull request #247 from jku/pip-install-output
Browse files Browse the repository at this point in the history
actions: Improve pip install output
  • Loading branch information
jku authored Apr 4, 2024
2 parents a69f9f9 + 71cdc03 commit 208148e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
5 changes: 4 additions & 1 deletion actions/create-signing-events/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ runs:
with:
python-version: "3.11"

- run: pip --quiet install $GITHUB_ACTION_PATH/../../repo/
- run: |
echo "::group::Install tuf-on-ci"
pip install $GITHUB_ACTION_PATH/../../repo/
echo "::endgroup::"
shell: bash
- name: Create signing event branches for expiring roles
Expand Down
5 changes: 4 additions & 1 deletion actions/online-sign/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ runs:
with:
python-version: "3.11"

- run: pip --quiet install $GITHUB_ACTION_PATH/../../repo/
- run: |
echo "::group::Install tuf-on-ci"
pip install $GITHUB_ACTION_PATH/../../repo/
echo "::endgroup::"
shell: bash
- id: online-sign
Expand Down
5 changes: 4 additions & 1 deletion actions/signing-event/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ runs:
with:
python-version: "3.11"

- run: pip --quiet install $GITHUB_ACTION_PATH/../../repo/
- run: |
echo "::group::Install tuf-on-ci"
pip install $GITHUB_ACTION_PATH/../../repo/
echo "::endgroup::"
shell: bash
- id: update_targets
Expand Down
5 changes: 3 additions & 2 deletions actions/test-repository/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ runs:
python-version: "3.11"

- run: |
# Install tuf-on-ci
pip --quiet install $GITHUB_ACTION_PATH/../../repo/
echo "::group::Install tuf-on-ci"
pip install $GITHUB_ACTION_PATH/../../repo/
echo "::endgroup::"
shell: bash
- env:
Expand Down

0 comments on commit 208148e

Please sign in to comment.