Skip to content

Commit

Permalink
fix: Fix typo (#377)
Browse files Browse the repository at this point in the history
* fix(ci): Fix typo

* feat(nitpic): Expand flags to help with readability

* feat(ci): Improve test parallelism
  • Loading branch information
juanjjaramillo authored Sep 13, 2023
1 parent fa434aa commit 6fdab05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 10
strategy:
max-parallel: 5
matrix:
kubernetes-version: [ "v1.23.17", "v1.24.17", "v1.25.13", "v1.26.8", "v1.27.5" ]
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ jobs:
run: |
if [ "${NEXT_VERSION}" != 'error' ]; then
echo "new appVersion to set: ${NEW_APP_VERSION}"
echo "new version to set: $NEXT_VERSION}"
yq e -i ".appVersion=\"${NEW_APP_VERSION}\"" "${{ env.CHART_DIRECTORY }}/Chart.yaml"
yq e -i ".version=\"${NEXT_VERSION}\"" "${{ env.CHART_DIRECTORY }}/Chart.yaml"
echo "new version to set: ${NEXT_VERSION}"
yq eval --inplace ".appVersion=\"${NEW_APP_VERSION}\"" "${{ env.CHART_DIRECTORY }}/Chart.yaml"
yq eval --inplace ".version=\"${NEXT_VERSION}\"" "${{ env.CHART_DIRECTORY }}/Chart.yaml"
else
echo "Error: newVersion is 'error'."
exit 1
Expand All @@ -156,7 +156,7 @@ jobs:
- name: Install Helm Docs
run: |
wget https://github.com/norwoodj/helm-docs/releases/download/v1.11.0/helm-docs_1.11.0_Linux_x86_64.tar.gz
tar -xvf helm-docs_1.11.0_Linux_x86_64.tar.gz
tar --extract --verbose --file helm-docs_1.11.0_Linux_x86_64.tar.gz
sudo mv helm-docs /usr/local/sbin
- name: Run Helm Docs
Expand All @@ -171,10 +171,10 @@ jobs:
- name: Commit Changes
run: |
git checkout -b update-chart-version-${{ github.sha }}
git branch -a
git branch --all
git add ${{ env.CHART_DIRECTORY }}/Chart.yaml
git add ${{ env.CHART_DIRECTORY }}/README.md
git commit -m "Bump versions and update docs"
git commit --message="Bump versions and update docs"
- name: Push Changes
run: git push origin update-chart-version-${{ github.sha }}
Expand Down

0 comments on commit 6fdab05

Please sign in to comment.