Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
jobs:
release-master:
runs-on: windows-latest
environment: production # Requires approval before publishing
if: github.ref == 'refs/heads/master' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')

steps:
Expand Down Expand Up @@ -204,7 +205,7 @@ jobs:
@{
title = "🎉 Krypton Toolkit Stable Release"
description = "A new stable release is now available!"
color = 77dd76
color = 7863670
fields = @(
@{
name = "📌 Version"
Expand Down Expand Up @@ -241,6 +242,7 @@ jobs:

release-v105-lts:
runs-on: windows-latest
environment: production # Requires approval before publishing
if: github.ref == 'refs/heads/V105-LTS' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')

steps:
Expand Down Expand Up @@ -429,7 +431,7 @@ jobs:
@{
title = "🎉 Krypton Toolkit Stable Release"
description = "A new stable release is now available!"
color = 77dd76
color = 7863670
fields = @(
@{
name = "📌 Version"
Expand Down Expand Up @@ -466,6 +468,7 @@ jobs:

release-v85-lts:
runs-on: windows-latest
environment: production # Requires approval before publishing
if: github.ref == 'refs/heads/V85-LTS' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')

steps:
Expand Down Expand Up @@ -639,7 +642,7 @@ jobs:
@{
title = "🛡️ Krypton Toolkit LTS Release"
description = "A new Long-Term Support release is now available!"
color = 0094ff
color = 38143
fields = @(
@{
name = "📌 Version"
Expand Down Expand Up @@ -676,6 +679,7 @@ jobs:

release-canary:
runs-on: windows-latest
environment: production # Requires approval before publishing
if: github.ref == 'refs/heads/canary' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')

steps:
Expand Down
Loading