From 69e73cb6cf10f4a94b3ee0e090e712aef6e44e4c Mon Sep 17 00:00:00 2001 From: khanhtc1202 Date: Wed, 15 Oct 2025 17:07:38 +0900 Subject: [PATCH] Add workflow to build and publish pipedv1 quickstart manifest Signed-off-by: khanhtc1202 --- .github/workflows/publish_pipedv1_exp.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/publish_pipedv1_exp.yaml b/.github/workflows/publish_pipedv1_exp.yaml index 11acae6b59..1e9c7ea511 100644 --- a/.github/workflows/publish_pipedv1_exp.yaml +++ b/.github/workflows/publish_pipedv1_exp.yaml @@ -121,3 +121,23 @@ jobs: run: | make build/chart MOD=pipedv1-exp VERSION=${{ inputs.version }} helm push .artifacts/pipedv1-exp-${{ inputs.version }}.tgz oci://${{ env.GHCR }}/pipe-cd/chart + + # Publish pipedv1 experimental manifests + - name: Build pipedv1 experimental quickstart manifests + run: | + helm template pipedv1-exp .artifacts/pipedv1-exp-${{ inputs.version }}.tgz --version ${{ inputs.version }} -n pipecd --set quickstart.enabled=true --set quickstart.pipedId=\ --set quickstart.pipedKeyData=\ > quickstart/manifests/pipedv1-exp.yaml + - name: Publish pipedv1 experimental quickstart manifests + uses: peter-evans/create-pull-request@v6 + with: + title: '[bot] Publish pipedv1 experimental quickstart manifests' + commit-message: '[bot] Publish pipedv1 experimental quickstart manifests' + branch: 'create-pull-request/publish-pipedv1-experimental-quickstart-manifests' + body: | + Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action. + The workflow is defined [here](https://github.com/pipe-cd/pipecd/blob/master/.github/workflows/publish_pipedv1_exp.yaml). + + **Note:** You need to **close and reopen this PR** manually to trigger status check workflows. (Or just click `Update branch` if possible.) + For details, see https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs. + delete-branch: true + signoff: true + token: ${{ secrets.GITHUB_TOKEN }}