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 0145c66 commit f0e71efCopy full SHA for f0e71ef
action.yml
@@ -48,17 +48,8 @@ runs:
48
python3 -m venv venv
49
source venv/bin/activate
50
51
- # Download artifact
52
- python3 -m pip download -r "$GITHUB_ACTION_PATH/requirements.txt"
53
-
54
- # Verify artifact attestations
55
- if ! gh attestation verify commit_check-*.whl -R commit-check/commit-check; then
56
- echo "Artifact verification failed. Aborting installation."
57
- exit 1
58
- fi
59
60
- # Install artifact
61
- python3 -m pip install commit_check-*.whl pygithub-*.whl
+ # Install artifacts
+ python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
62
63
python3 "$GITHUB_ACTION_PATH/main.py"
64
env:
0 commit comments