Skip to content

Commit

Permalink
chore(gha): solve pypi release github action (#6278)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCloudSec authored Dec 20, 2024
1 parent f7e510b commit a377a9f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/sdk-pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ jobs:
- name: Repository check
working-directory: /tmp
run: |
[[ ${{ github.repository }} != "prowler-cloud/prowler" ]] && echo "This action only runs for prowler-cloud/prowler"; exit 1
if [[ "${{ github.repository }}" != "prowler-cloud/prowler" ]]; then
echo "This action only runs for prowler-cloud/prowler"
exit 1
fi
- name: Get Prowler version
run: |
Expand Down

0 comments on commit a377a9f

Please sign in to comment.