ci: rename the workflow

This commit is contained in:
Yi-Ya Chen 2025-02-20 16:30:13 +08:00 committed by Andy Lee
parent 30e49a6f2c
commit da4121da69
No known key found for this signature in database
GPG Key ID: EC774C32160918ED
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
name: Build Harvester Dashboard and Upload name: Build Harvester Dashboard and Publish
on: on:
workflow_call: workflow_call:

View File

@ -1,4 +1,4 @@
name: Build Dashboard (Branch) name: Build Standalone on PR Merge
on: on:
push: push:
@ -11,7 +11,7 @@ on:
- main - main
- 'release-harvester-v*' - 'release-harvester-v*'
- '*-dev' - '*-dev'
types: types:
- merged - merged
jobs: jobs:
@ -20,7 +20,7 @@ jobs:
uses: ./.github/workflows/test.yaml uses: ./.github/workflows/test.yaml
build: build:
name: Build and Upload Package name: Build and Upload Package
uses: ./.github/workflows/build-and-upload.yaml uses: ./.github/workflows/build-and-publish-standalone.yaml
needs: needs:
- build-validation - build-validation
permissions: permissions:

View File

@ -1,4 +1,4 @@
name: Build Dashboard (Release) name: Build Standalone on Release
on: on:
push: push:
tags: tags:
@ -10,7 +10,7 @@ jobs:
uses: ./.github/workflows/test.yaml uses: ./.github/workflows/test.yaml
build: build:
name: Build and Upload Package name: Build and Upload Package
uses: ./.github/workflows/build-and-upload.yaml uses: ./.github/workflows/build-and-publish-standalone.yaml
needs: needs:
- build-validation - build-validation
permissions: permissions: