Skip to content

Commit

Permalink
Fix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cytopia authored Sep 15, 2020
1 parent 89edcd2 commit c65bd06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
run: |
if [ -n "$( git tag --points-at HEAD )" ]; then
GIT_TYPE=TAG
GIT SLUG="$( git tag --points-at HEAD )"
GIT_SLUG="$( git tag --points-at HEAD )"
elif [ "$( git rev-parse --abbrev-ref HEAD )" != "HEAD" ]; then
GIT_TYPE=BRANCH
GIT SLUG="$( git rev-parse --abbrev-ref HEAD )"
GIT_SLUG="$( git rev-parse --abbrev-ref HEAD )"
else
false
fi
Expand Down

0 comments on commit c65bd06

Please sign in to comment.