Skip to content

Commit

Permalink
chore: fix project id error
Browse files Browse the repository at this point in the history
  • Loading branch information
JashBook committed Nov 16, 2023
1 parent 2857b7a commit e5aa8dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/utils/release_gitlab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ get_project_id() {
fi
# check kubeblocks charts
for helm_charts in $(echo "$HELM_CHARTS_LIST" | sed 's/|/ /g'); do
if [[ "$chart_name" == "$helm_charts"* ]]; then
if [[ "$chart_name" == "$helm_charts" ]]; then
PROJECT_ID_TMP=$HELM_CHARTS_PROJECT_ID
break
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
--charts-dir "${{ github.workspace }}/kubeblocks-addons/addons|${{ github.workspace }}/helm-charts/charts|${{ github.workspace }}/deploy" \
--access-token "${{ env.JIHULAB_ACCESS_TOKEN }}" \
--access-user "${{ env.JIHULAB_ACCESS_USER }}" \
--project-id "${{ env.PROJECT_ID }}"
--project-id "${{ inputs.PROJECT_ID }}"
- name: Fetch helm-charts History And Configure Git
run: |
Expand Down

0 comments on commit e5aa8dd

Please sign in to comment.