Skip to content

Commit 776172e

Browse files
committed
Don't consider custom tagged build runs as nightlies
1 parent 75ecf23 commit 776172e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
IS_NIGHTLY: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
12+
IS_NIGHTLY: ${{ github.event_name == 'schedule' || ( github.event_name == 'workflow_dispatch' && github.ref_type != 'tag' ) }}
1313
CARGO_TERM_COLOR: always
1414

1515
jobs:

0 commit comments

Comments
 (0)