Skip to content

Commit 6d9b3f1

Browse files
workflows: update nightly builds for 3.2
Signed-off-by: Patrick Stephens <pat@chronosphere.io>
1 parent 81f62b9 commit 6d9b3f1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cron-unstable-build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
# Run nightly build at this time, bit of trial and error but this seems good.
1414
schedule:
1515
- cron: "0 6 * * *" # master build
16-
- cron: "0 12 * * *" # 3.0 build
17-
- cron: "0 18 * * *" # 3.1 build
16+
- cron: "0 12 * * *" # 3.2 build
17+
- cron: "0 18 * * *" # master build
1818

1919
# We do not want a new unstable build to run whilst we are releasing the current unstable build.
2020
concurrency: unstable-build-release
@@ -55,13 +55,13 @@ jobs:
5555
- name: 3.0 run
5656
if: github.event_name == 'schedule' && github.event.schedule=='0 12 * * *'
5757
run: |
58-
echo "cron_branch=3.0" >> $GITHUB_ENV
58+
echo "cron_branch=3.2" >> $GITHUB_ENV
5959
shell: bash
6060

61-
- name: 3.1 run
61+
- name: master run
6262
if: github.event_name == 'schedule' && github.event.schedule=='0 18 * * *'
6363
run: |
64-
echo "cron_branch=3.1" >> $GITHUB_ENV
64+
echo "cron_branch=master" >> $GITHUB_ENV
6565
shell: bash
6666

6767
- name: Output the branch to use

0 commit comments

Comments
 (0)