We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e00082 commit 4c628b6Copy full SHA for 4c628b6
.github/workflows/bug_bounty.yml
@@ -16,15 +16,13 @@ jobs:
16
17
LATEST_TAG_NAME=$(echo "$RELEASE_JSON" | jq -r '.tag_name')
18
RELEASE_EVENT_TAG_NAME=$(echo ${{ github.event.release.tag_name }})
19
-
20
- if [ "$LATEST_TAG_NAME" = "$RELEASE_EVENT_TAG_NAME" ]; then
+ if [ "$LATEST_TAG_NAME" == "$RELEASE_EVENT_TAG_NAME" ]; then
21
echo "IS_LATEST_RELEASE=true" >> $GITHUB_ENV
22
else
23
echo "IS_LATEST_RELEASE=false" >> $GITHUB_ENV
24
fi
25
26
echo "Latest tag: $LATEST_TAG_NAME"
27
echo "Release event tag: $RELEASE_EVENT_TAG_NAME"
28
- echo $IS_LATEST_RELEASE
29
echo "Is latest release: ${{ env.IS_LATEST_RELEASE }}"
30
0 commit comments