From d8d755889c4a06a87543cb1ba440f1a8e7134cfb Mon Sep 17 00:00:00 2001 From: Carsten Schafer Date: Fri, 5 Jul 2024 08:10:44 -0400 Subject: [PATCH 1/3] Target main branch as well Signed-off-by: Carsten Schafer --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 324fee5..fcd0af5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,12 +5,14 @@ on: paths-ignore: - '**.md' branches: + - main - next - 'release/*' tags: - 'v*' pull_request: branches: + - main - next - 'release/*' @@ -40,7 +42,7 @@ jobs: registry_password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} - name: Notify on failure via Slack - if: failure() && github.ref == 'refs/heads/next' + if: failure() && github.ref == 'refs/heads/main' uses: rtCamp/action-slack-notify@v2 env: SLACK_USERNAME: GitHub Actions failure notifier @@ -51,7 +53,7 @@ jobs: trigger-deploy-to-dev: runs-on: ubuntu-latest - #if: github.ref == 'refs/heads/next' + #if: github.ref == 'refs/heads/main' if: github.ref == 'zzzzzzz' needs: - docker From 5b032e3798d556b6fd2ebef74c1f891058c14303 Mon Sep 17 00:00:00 2001 From: Carsten Schafer Date: Fri, 5 Jul 2024 08:12:50 -0400 Subject: [PATCH 2/3] Default tag now latest for helm chart Signed-off-by: Carsten Schafer --- helm/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/values.yaml b/helm/values.yaml index 3953be8..bb954fb 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -8,7 +8,7 @@ fullnameOverride: "" images: cgw: repository: tip-tip-wlan-cloud-ucentral.jfrog.io/cgw - tag: next + tag: latest pullPolicy: Always # regcred: # registry: tip-tip-wlan-cloud-ucentral.jfrog.io From befbf5a6e75a42f4a1c562e5ff987af69792e18b Mon Sep 17 00:00:00 2001 From: Carsten Schafer Date: Fri, 5 Jul 2024 08:16:12 -0400 Subject: [PATCH 3/3] Default tag now latest for helm chart Signed-off-by: Carsten Schafer --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcd0af5..365ec2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,3 +1,4 @@ +# name: CI on: