Skip to content

Commit 6de6369

Browse files
authored
chore: remove llmserver (#598)
1 parent 26b51a5 commit 6de6369

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

.github/workflows/release-chart.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ on:
1515
options:
1616
- ""
1717
- kubechat
18-
- llmserver
1918
release:
2019
types:
2120
- published
@@ -57,22 +56,9 @@ jobs:
5756
CHECK_ENABLE: false
5857
secrets: inherit
5958

60-
release-llmserver-chart:
61-
if: ${{ github.event.action == 'published' || inputs.chart_name == '' || inputs.chart_name == 'llmserver' }}
62-
needs: [ chart-version ]
63-
uses: apecloud/apecloud-cd/.github/workflows/release-charts.yml@v0.1.34
64-
with:
65-
VERSION: "${{ needs.chart-version.outputs.chart-version }}"
66-
CHART_NAME: "llmserver"
67-
CHART_DIR: "deploy"
68-
SPECIFY_CHART: "llmserver"
69-
APECD_REF: "v0.1.34"
70-
CHECK_ENABLE: false
71-
secrets: inherit
72-
7359
release-result:
7460
runs-on: ubuntu-latest
75-
needs: [ release-kubechat-chart, release-llmserver-chart ]
61+
needs: [ release-kubechat-chart ]
7662
if: ${{ always() && github.event.action == 'published' }}
7763
outputs:
7864
release-result: ${{ steps.get_release_result.outputs.release_result }}
@@ -85,7 +71,7 @@ jobs:
8571
echo 'artifact_key='${ARTIFACT_KEY} >> $GITHUB_OUTPUT
8672
8773
RELEASE_RESULT="error"
88-
if [[ "${{ needs.release-kubechat-chart.result }}" == "success" && "${{ needs.release-llmserver-chart.result }}" == "success" ]]; then
74+
if [[ "${{ needs.release-kubechat-chart.result }}" == "success" ]]; then
8975
RELEASE_RESULT="success"
9076
echo "success" > ${ARTIFACT_KEY}
9177
else

0 commit comments

Comments
 (0)