Skip to content

Commit

Permalink
fix script, remove permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Aug 2, 2024
1 parent ebdc26b commit b4cb23c
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/dependencies_matches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ name: Check if dependencies match
# at the same time, this check makes sure that we do use
# the same version of said libraries.
on: [push]
permissions:
issues: write
pull-requests: write


jobs:
wownero-seed:
Expand Down Expand Up @@ -34,16 +30,16 @@ jobs:
echo "WOWNERO_WOWNEROSEED=$(cat wownero/contrib/depends/packages/wownero_seed.mk | grep _download_file | tr '=.' '\n' | head -2 | tail -1)" >> $GITHUB_ENV
- name: compare hashes
run: |
if [[ "x$WOWNERO_WOWNEROSEED" == "x" ]];
then
echo "Unable to obtain wownero seed from wownero repo"
exit 1
fi
if [[ ! "x$EXTERNAL_WOWNEROSEED" == "x$WOWNERO_WOWNEROSEED" ]];
then
echo "external/wownero-seed doesn't match wownero/contrib/depends/packages/wownero_seed.mk checksum"
exit 1
fi
if [[ "x$WOWNERO_WOWNEROSEED" == "x" ]];
then
echo "Unable to obtain wownero seed from wownero repo"
exit 1
fi
if [[ ! "x$EXTERNAL_WOWNEROSEED" == "x$WOWNERO_WOWNEROSEED" ]];
then
echo "external/wownero-seed doesn't match wownero/contrib/depends/packages/wownero_seed.mk checksum"
exit 1
fi
polyseed:
strategy:
matrix:
Expand Down

0 comments on commit b4cb23c

Please sign in to comment.