fix: Logs are not truncated, therefore Gitlab message cannot be created #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |