Skip to content

Commit 2550208

Browse files
authored
chore: dev artifacts publishing improvements (#60)
1 parent 3dfda2f commit 2550208

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
---
5+
6+
name: Push development artifacts to the Release Service
7+
8+
on:
9+
# muanual trigger from the Actions tab
10+
workflow_dispatch:
11+
inputs:
12+
version_suffix:
13+
description: "Version suffix to append to the version"
14+
required: false
15+
default: "unstable"
16+
17+
permissions: {}
18+
19+
jobs:
20+
dev-artifacts:
21+
permissions:
22+
contents: read
23+
uses: open-edge-platform/orch-ci/.github/workflows/pre-merge.yml@main
24+
with:
25+
bootstrap_tools: "base,go"
26+
cache_go: false
27+
remove_cache_go: false
28+
run_security_scans: false
29+
run_version_check: false
30+
run_dep_version_check: false
31+
run_build: false
32+
run_lint: false
33+
run_test: false
34+
run_validate_clean_folder: false
35+
run_docker_build: true
36+
run_docker_push: true
37+
run_helm_build: true
38+
run_helm_push: true
39+
version_suffix: ${{ github.event.inputs.version_suffix }}
40+
secrets: inherit

.github/workflows/post-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run_version_tag: true
3030
remove_cache_go: true
3131
run_docker_build: true
32-
run_docker_push: true
32+
run_docker_push: false
3333
run_helm_build: true
34-
run_helm_push: true
34+
run_helm_push: false
3535
secrets: inherit # zizmor: ignore[secrets-inherit]

0 commit comments

Comments
 (0)