We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d144a5 commit 963468eCopy full SHA for 963468e
.github/workflows/release.yml
@@ -0,0 +1,4 @@
1
+name: Release
2
+on:
3
+
4
+jobs:
.github/workflows/update_nightly.yml
@@ -0,0 +1,16 @@
+name: Create the nightly release
+ schedule:
+ # Take into account lut99's sleep schedule
5
+ cron: 0 4 * * *
6
7
+ # Manual mechanism to bump the nightly in case of a issue with the one from last night
8
+ workflow_dispatch:
9
+ inputs:
10
+ ref:
11
+ default: main
12
+ optional: true
13
+ type: string
14
15
16
+ # TODO: Tag the last commit on main as nightly, but only if this is not the case already
0 commit comments