-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release chart on main workflow as well
- Loading branch information
1 parent
f502d16
commit 827c7fa
Showing
2 changed files
with
17 additions
and
0 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 |
---|---|---|
|
@@ -53,3 +53,19 @@ jobs: | |
docker push ghcr.io/${{ env.IMAGE_BASE }}/$image:latest | ||
echo "::endgroup::" | ||
done | ||
- | ||
name: Configure Git | ||
if: ${{ github.event_name != 'pull_request' }} | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- | ||
name: Run chart-releaser | ||
if: ${{ github.event_name != 'pull_request' }} | ||
uses: helm/[email protected] | ||
with: | ||
charts_dir: deploy | ||
mark_as_latest: false | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
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 |
---|---|---|
|
@@ -78,5 +78,6 @@ jobs: | |
uses: helm/[email protected] | ||
with: | ||
charts_dir: deploy | ||
mark_as_latest: false | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |