Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VaeterchenFrost committed Dec 17, 2024
1 parent 173ecfb commit 8e3433d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ jobs:
- name: Setup Graphviz
run: |
wget -nv https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/12.2.1/graphviz-12.2.1.tar.gz
HASH = $(sha256sum graphviz-12.2.1.tar.gz)
if [["$HASH" != "242bc18942eebda6db4039f108f387ec97856fc91ba47f21e89341c34b554df8 graphviz-12.2.1.tar.gz" ]]; then
graphviz-12.2.1.tar.gz.sha256="242bc18942eebda6db4039f108f387ec97856fc91ba47f21e89341c34b554df8 graphviz-12.2.1.tar.gz"
calculated_hash=$(sha256sum graphviz-12.2.1.tar.gz)
if [["$calculated_hash" != "$graphviz-12.2.1.tar.gz.sha256" ]]; then
echo "The file is corrupted, calculated_hash: $calculated_hash"
exit 1
fi
# extract
Expand Down

0 comments on commit 8e3433d

Please sign in to comment.