Skip to content

Commit 7e29952

Browse files
a-release
1 parent 9ab41f9 commit 7e29952

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.cloudbees/workflows/a-release.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: automation.cloudbees.io/v1alpha1
2+
kind: workflow
3+
name: a-release
4+
on:
5+
workflow_dispatch:
6+
inputs:
7+
manifest:
8+
type: string
9+
required: true
10+
description: A sample manifest should go here, to help user
11+
metadata:
12+
stages/v1alpha1:
13+
- name: Stage
14+
jobs:
15+
- build
16+
jobs:
17+
build:
18+
steps:
19+
- name: Say hello
20+
uses: docker://golang:1.20.3-alpine3.17
21+
shell: sh
22+
run: |
23+
echo "hello world"

0 commit comments

Comments
 (0)