From 3de2c8dd94df778d1c17896ad64eba27e00708f5 Mon Sep 17 00:00:00 2001 From: Cooper Tseng Date: Fri, 12 Jul 2024 11:21:14 +0800 Subject: [PATCH] Fix github action Add missing validate and validate-ci by using make ci, also run make package and make package-webhook since they are not included in make ci Signed-off-by: Cooper Tseng --- .github/workflows/template-build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/template-build.yml b/.github/workflows/template-build.yml index 15211378..44e8a1fb 100644 --- a/.github/workflows/template-build.yml +++ b/.github/workflows/template-build.yml @@ -26,8 +26,14 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Run dapper - run: make default + - name: ci + run: make ci + + - name: Package + run: make package + + - name: Package webhook + run: make package-webhook - name: Read Secrets uses: rancher-eio/read-vault-secrets@main