From f80e2534017f5a024820aba0d2e2f26ccae1e991 Mon Sep 17 00:00:00 2001 From: Eaven Kimura Date: Tue, 28 Oct 2025 14:08:03 +0000 Subject: [PATCH] Update: CI/CD repo branches --- .gitea/workflows/ci-cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index e555e4f..a70fd61 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -2,7 +2,7 @@ name: CI/CD Pipeline on: push: - branches: [ main, experimental, dev ] + branches: [ main, development, experimental ] tags: [ 'v*.*.*' ] pull_request: branches: [ main ] @@ -297,10 +297,10 @@ jobs: PRIMARY_TAG="${GITHUB_REF#refs/tags/}" elif [[ ${{ github.ref }} == refs/heads/main ]]; then PRIMARY_TAG="latest" + elif [[ ${{ github.ref }} == refs/heads/development ]]; then + PRIMARY_TAG="development" elif [[ ${{ github.ref }} == refs/heads/experimental ]]; then PRIMARY_TAG="experimental" - elif [[ ${{ github.ref }} == refs/heads/dev ]]; then - PRIMARY_TAG="dev" else PRIMARY_TAG="latest" fi