File tree Expand file tree Collapse file tree 2 files changed +42
-2
lines changed Expand file tree Collapse file tree 2 files changed +42
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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]
You can’t perform that action at this time.
0 commit comments