mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
Fix nightly edge not scheduling (#6775)
* fix nightly edge not scheduling * changing to 11PM UTC * clarifying comment * better diff
This commit is contained in:
6
.github/workflows/publish-nightly-edge.yml
vendored
6
.github/workflows/publish-nightly-edge.yml
vendored
@@ -1,9 +1,9 @@
|
||||
name: Deploy nightly Edge
|
||||
|
||||
# Publish nightly version of Edge - Runs every day at midnight
|
||||
# Publish nightly version of Edge - Runs every day at 23:00 UTC
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
- cron: '0 23 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
defaults:
|
||||
@@ -14,7 +14,7 @@ env:
|
||||
CI: true
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
group: nightly-edge-deploy
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: Publish nightly npm packages
|
||||
|
||||
# Nightly npm packages are built daily
|
||||
# Nightly npm packages are built daily at midnight UTC
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
Reference in New Issue
Block a user