-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use official name and email for CICD Signed-off-by: Dolpher Du <[email protected]> * Enable GH action to trigger test with released image Signed-off-by: Dolpher Du <[email protected]> * Unify quotation marks usage for repository Signed-off-by: Dolpher Du <[email protected]> --------- Signed-off-by: Dolpher Du <[email protected]>
- Loading branch information
1 parent
3a7cb76
commit 576b25a
Showing
6 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,9 +37,9 @@ jobs: | |
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "NeuralChatBot" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin https://NeuralChatBot:"${{ secrets.ACTION_TOKEN }}"@github.com/opea-project/GenAIInfra.git | ||
git config --global user.name "CICD-at-OPEA" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin https://CICD-at-OPEA:"${{ secrets.ACTION_TOKEN }}"@github.com/opea-project/GenAIInfra.git | ||
- name: Run script | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,9 +71,9 @@ jobs: | |
# # Insert copyright to avoid warnings | ||
# sed -i '1s/^/# Copyright (C) 2024 Intel Corporation\n# SPDX-License-Identifier: Apache-2.0\n\n/' index.yaml | ||
# git config --global user.name "NeuralChatBot" | ||
# git config --global user.email "[email protected]" | ||
# git remote set-url origin https://NeuralChatBot:"${{ secrets.ACTION_TOKEN }}"@github.com/opea-project/GenAIInfra.git | ||
# git config --global user.name "CICD-at-OPEA" | ||
# git config --global user.email "[email protected]" | ||
# git remote set-url origin https://CICD-at-OPEA:"${{ secrets.ACTION_TOKEN }}"@github.com/opea-project/GenAIInfra.git | ||
# git status | ||
# git add . | ||
|
@@ -84,7 +84,7 @@ jobs: | |
echo "Publish charts version ${{ inputs.version }}to ghcr" | ||
echo "${{ secrets.ACTION_TOKEN }}" | helm registry login ghcr.io -u test --password-stdin | ||
for chart in *-${{ inputs.version }}.tgz; do | ||
echo "Publishing ${chart}\n" | ||
echo "Publishing ${chart}" | ||
helm push ${chart} oci://ghcr.io/opea-project/charts | ||
done | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters