Skip to content

Commit 6f72a42

Browse files
committed
#RI-6315 - release workflow doesn't run
1 parent 7e1c0b6 commit 6f72a42

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/release-prod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
with:
1414
group_tests: 'without_e2e'
1515
short_rte_list: false
16+
pre_release: true
1617

1718
builds-prod:
1819
name: Create all builds for release

.github/workflows/release-stage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
with:
1414
group_tests: 'without_e2e'
1515
short_rte_list: false
16+
pre_release: true
1617

1718
builds:
1819
name: Release stage builds

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ on:
3939
description: Use short rte list
4040
type: boolean
4141
default: true
42+
pre_release:
43+
description: Enable SSH Debug
44+
default: false
45+
type: boolean
4246
debug:
4347
description: Enable SSH Debug
4448
default: false
@@ -141,13 +145,13 @@ jobs:
141145
clean:
142146
uses: ./.github/workflows/clean-deployments.yml
143147
needs: [frontend-tests, backend-tests, integration-tests, e2e-docker-tests, e2e-appimage-tests]
144-
if: always()
148+
if: ${{ !inputs.pre_release && always() }}
145149

146150
# Remove artifacts from github actions
147151
remove-artifacts:
148152
name: Remove artifacts
149153
needs: [clean]
150-
if: always()
154+
if: ${{ !inputs.pre_release && always() }}
151155
runs-on: ubuntu-latest
152156

153157
steps:

0 commit comments

Comments
 (0)