-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Helm per commit release * Helm per commit release
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Create and publish a Docker image | ||
name: Publish helm and app images per commit to main | ||
|
||
# Configures this workflow to run every time a change is pushed to the main branch. | ||
on: | ||
|
@@ -60,3 +60,14 @@ jobs: | |
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
- name: Build and push helm chart image | ||
uses: appany/[email protected] | ||
with: | ||
name: ytsaurus-identity-sync | ||
repository: ${{ github.repository }} | ||
tag: ${{ steps.meta.outputs.tags }} | ||
path: deploy/chart/ytsaurus-identity-sync | ||
registry: ${{ env.REGISTRY }} | ||
registry_username: ${{ github.actor }} | ||
registry_password: ${{ secrets.GITHUB_TOKEN }} |