Change release-schedule to weekly

This commit is contained in:
TSR Berry 2023-04-04 16:49:06 +02:00
parent 38636c352c
commit 2d4491d6d9
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2
2 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@ name: Release job
on:
workflow_dispatch:
push:
branches: [ stable ]
branches: [ weekly ]
paths-ignore:
- '.github/**'
- '*.yml'
@ -11,13 +11,13 @@ on:
- '*.config'
- 'README.md'
concurrency: release-stable
concurrency: release-weekly
env:
POWERSHELL_TELEMETRY_OPTOUT: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
RYUJINX_VERSION: "1.1.${{ github.run_number }}"
RYUJINX_TARGET_RELEASE_CHANNEL_NAME: "stable"
RYUJINX_TARGET_RELEASE_CHANNEL_NAME: "weekly"
RYUJINX_TARGET_RELEASE_CHANNEL_OWNER: "Ryujinx"
RYUJINX_TARGET_RELEASE_CHANNEL_REPO: "release-channel-master"

View file

@ -1,10 +1,10 @@
name: Update stable branch
name: Update weekly branch
on:
workflow_dispatch:
schedule:
# Daily at 14:20 UTC
- cron: "20 14 * * *"
# At 14:20 UTC on Saturday
- cron: "20 14 * * 6"
jobs:
update_stable: