Skip to content

Commit 51d69f1

Browse files
committed
always release for testing purposes
Signed-off-by: Martijn Govers <[email protected]>
1 parent 2f64942 commit 51d69f1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
permissions:
3939
contents: write
4040
with:
41-
create_release: ${{ (github.event_name == 'workflow_dispatch' && inputs.create_release) || (github.event_name == 'push') }}
41+
create_release: "true"
42+
# ${{ (github.event_name == 'workflow_dispatch' && inputs.create_release) || (github.event_name == 'push') }}
43+
# TODO(mgovers): revert back to original
4244

4345
check-code-quality:
4446
uses: "./.github/workflows/check-code-quality.yml"
@@ -60,7 +62,8 @@ jobs:
6062
contents: write
6163
id-token: write # Required for Trusted Publishing
6264
needs: build-test-release
63-
if: (github.event_name == 'workflow_dispatch' && inputs.create_release) || github.event_name == 'push'
65+
# if: (github.event_name == 'workflow_dispatch' && inputs.create_release) || github.event_name == 'push'
66+
# TODO(mgovers): revert back to original
6467

6568
steps:
6669
- name: Download assets from GitHub release

0 commit comments

Comments
 (0)