We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a7a04 commit a6c849bCopy full SHA for a6c849b
action.yml
@@ -43,10 +43,14 @@ runs:
43
# https://github.com/pypa/setuptools/issues/3269
44
export DEB_PYTHON_INSTALL_LAYOUT=deb
45
fi
46
- python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
+ # Download artifact
47
+ python3 -m pip download -r "$GITHUB_ACTION_PATH/requirements.txt"
48
49
# Verifying artifact attestations
50
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"
54
env:
55
GH_TOKEN: ${{ github.token }}
56
- name: Run commit-check
0 commit comments