File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
jobs :
16
16
# HEADS UP! this "nightly" job will only ever run on the `main` branch due to
17
17
# it being a cron job, and the last commit on main will be what github shows
18
- # as the trigger however in the checkout below we specify the `v7 ` branch,
18
+ # as the trigger however in the checkout below we specify the `dev ` branch,
19
19
# so all the scripts in this job will be ran from that, confusing i know, so
20
20
# in some cases we'll need to create multiple PRs when modifying nightly
21
21
# release processes
31
31
- name : ⬇️ Checkout repo
32
32
uses : actions/checkout@v4
33
33
with :
34
- ref : v7
34
+ ref : dev
35
35
# checkout using a custom token so that we can push later on
36
36
token : ${{ secrets.GITHUB_TOKEN }}
37
37
fetch-depth : 0
56
56
# get latest nightly tag
57
57
LATEST_NIGHTLY_TAG=$(git tag -l v0.0.0-nightly-\* --sort=-creatordate | head -n 1)
58
58
59
- # check if last commit to v7 starts with the nightly tag we're about
59
+ # check if last commit to dev starts with the nightly tag we're about
60
60
# to create (minus the date)
61
61
# if it is, we'll skip the nightly creation
62
62
# if not, we'll create a new nightly tag
You can’t perform that action at this time.
0 commit comments