-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add manual job to freeze image tags and versions (#330)
temporarily disable image build on push workflow Signed-off-by: Yingchun Guo <yingchun.guo@intel.com>
- Loading branch information
1 parent
b1182c4
commit c0f5e2f
Showing
2 changed files
with
70 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Freeze helm release tag in helm charts on manual event | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
oldappversion: | ||
default: "v0.8" | ||
description: "Old appVersion to be replaced" | ||
required: true | ||
type: string | ||
newappversion: | ||
default: "v0.9" | ||
description: "New appVersion to replace" | ||
required: true | ||
type: string | ||
oldversion: | ||
default: "0.8.0" | ||
description: "Old version to be replaced" | ||
required: true | ||
type: string | ||
newversion: | ||
default: "0.9.0" | ||
description: "New version to replace" | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
freeze-tag: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.ref }} | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "NeuralChatBot" | ||
git config --global user.email "grp_neural_chat_bot@intel.com" | ||
git remote set-url origin https://NeuralChatBot:"${{ secrets.ACTION_TOKEN }}"@github.com/opea-project/GenAIExamples.git | ||
- name: Run script | ||
env: | ||
NEWTAG: ${{ inputs.newappversion }} | ||
run: | | ||
find helm-charts/ -name 'Chart.yaml' -type f -exec sed -i "s#appVersion: \"${{ inputs.oldappversion }}\"#appVersion: \"${{ inputs.newappversion }}\"#g" {} \; | ||
find helm-charts/ -name 'Chart.yaml' -type f -exec sed -i "s#version: ${{ inputs.oldversion }}#version: ${{ inputs.newversion }}#g" {} \; | ||
./helm-charts/update_manifests.sh | ||
- name: Commit changes | ||
run: | | ||
git add . | ||
git commit -s -m "Freeze Helm charts versions" | ||
git push |
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