Skip to content

Commit

Permalink
Only run release actions when versions match
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisanna Dettwyler committed Apr 21, 2021
1 parent abc03ea commit 68e34cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
.github/ci.sh output tag $EVENT_TAG
.github/ci.sh output schedule $EVENT_SCHEDULE
.github/ci.sh output publish $({ $EVENT_TAG || $EVENT_SCHEDULE; } && echo true || echo false)
.github/ci.sh output release $({ $RELEASE || [[ "refs/heads/release-$(.github/ci.sh ver)" == "${{ github.event.ref }}" ]]; } && echo true || echo false)
.github/ci.sh output release $([[ "refs/heads/release-$(.github/ci.sh ver)" == "${{ github.event.ref }}" ]] && echo true || echo false)
.github/ci.sh output retention-days $($RELEASE && echo 90 || echo 5)
build:
Expand Down

0 comments on commit 68e34cc

Please sign in to comment.