Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35ba1f1a5a | ||
|
|
71cd0a0aab |
@@ -65,13 +65,14 @@ jobs:
|
|||||||
token: ${{ secrets.TOKEN }}
|
token: ${{ secrets.TOKEN }}
|
||||||
github-server-url: ${{ inputs.server-url }}
|
github-server-url: ${{ inputs.server-url }}
|
||||||
|
|
||||||
- name: Update Helm chart version
|
- name: Update values
|
||||||
if: ${{ inputs.update-helm }}
|
run: |
|
||||||
run: yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}"
|
if [ "${{ inputs.update-helm }}" = "true" ]; then
|
||||||
|
yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}"
|
||||||
- name: Update image tag
|
fi
|
||||||
if: ${{ inputs.update-image }}
|
if [ "${{ inputs.update-image }}" = "true" ]; then
|
||||||
run: yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}"
|
yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}"
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Commit and push changes
|
- name: Commit and push changes
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user