Skip to content

Commit

Permalink
📦 various changes
Browse files Browse the repository at this point in the history
  • Loading branch information
electricduck committed Apr 13, 2023
1 parent 43a57aa commit 227c0bd
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 29 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/nightly.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,29 +1,19 @@
name: "Update (Scheduled)"
name: "Update: Current"

on:
schedule:
- cron: '0 4 * * 3,6' # At 04:00 on Wednesday and Saturday
workflow_dispatch:

jobs:
desktop--current:
name: "Desktop (Current)"
desktop:
name: "Desktop"
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/ci
with:
branch: release/current
tree: desktop
desktop--long-4:
name: "Desktop (Long 4)"
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/ci
with:
branch: release/long/4
tree: desktop
desktop--next:
name: "Desktop (Next)"
runs-on: self-hosted
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/update.scheduled.long-4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Update: Long (4)"

on:
schedule:
- cron: '0 4 * * 3,6' # At 04:00 on Wednesday and Saturday

jobs:
desktop:
name: "Desktop"
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/ci
with:
branch: release/long/4
tree: desktop
16 changes: 16 additions & 0 deletions .github/workflows/update.scheduled.next.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Update: Next"

on:
schedule:
- cron: '0 4 * * 3,6' # At 04:00 on Wednesday and Saturday

jobs:
desktop:
name: "Desktop (Next)"
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/ci
with:
branch: release/next
tree: desktop

0 comments on commit 227c0bd

Please sign in to comment.