-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 1.03 KB
/
test-and-release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Test and release
on:
push:
tags:
- "*"
branches:
- main
pull_request:
jobs:
build:
uses: kube-cicd/.github/.github/workflows/app.common.yaml@main
secrets:
containerRegistryUsername: "${{ secrets.QUAY_USERNAME }}"
containerRegistryPassword: "${{ secrets.QUAY_PASSWORD }}"
with:
containerImage: "quay.io/pipelines-feedback/tekton"
containerRegistryHost: "quay.io"
testCommand: "make k3d k3d-install-tekton test"
goVersion: "1.22"
release-helm:
uses: kube-cicd/.github/.github/workflows/helm.common.yaml@main
needs: ["build"]
secrets:
registryUsername: "${{ secrets.QUAY_USERNAME }}"
registryPassword: "${{ secrets.QUAY_PASSWORD }}"
with:
chartRepoName: "pipelines-feedback"
chartName: "tekton-chart"
chartPath: "charts/tekton-chart"
enableHelmDocs: false
registryHost: "quay.io"