Skip to content

Commit a6c849b

Browse files
authored
Update action.yml
1 parent 40a7a04 commit a6c849b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,14 @@ runs:
4343
# https://github.com/pypa/setuptools/issues/3269
4444
export DEB_PYTHON_INSTALL_LAYOUT=deb
4545
fi
46-
python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
46+
# Download artifact
47+
python3 -m pip download -r "$GITHUB_ACTION_PATH/requirements.txt"
4748
4849
# Verifying artifact attestations
4950
gh attestation verify "$GITHUB_ACTION_PATH/commit_check-*.whl" -R commit-check/commit-check
51+
52+
# Install artifact
53+
python3 -m pip install -r "$GITHUB_ACTION_PATH/commit_check-*.whl"
5054
env:
5155
GH_TOKEN: ${{ github.token }}
5256
- name: Run commit-check

0 commit comments

Comments
 (0)