diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 1a3a621..9c2bcf0 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -86,15 +86,12 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: package helm chart shell: bash - working-directory: charts/${{ github.event.repository.name }} run: | - helm dependency update - helm package --app-version="${{ needs.semantic-release.outputs.tag }}" --version=${{ needs.semantic-release.outputs.tag }} . + helm package -u --destination=.cr-release-packages --app-version="${{ needs.semantic-release.outputs.tag }}" --version=${{ needs.semantic-release.outputs.tag }} charts/${{ github.event.repository.name }} - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: skip_packaging: 'true' - package-path: charts/${{ github.event.repository.name }} diff --git a/.github/workflows/pr-close.yml b/.github/workflows/pr-close.yml index 8c42ea7..9204761 100644 --- a/.github/workflows/pr-close.yml +++ b/.github/workflows/pr-close.yml @@ -5,8 +5,6 @@ on: types: [closed] paths-ignore: - '*.md' - - '.github/**' - - 'charts/**' concurrency: # PR open and close use the same group, allowing only one at a time