Skip to content

Commit

Permalink
Merge 9a136a9 into 04aafbb
Browse files Browse the repository at this point in the history
  • Loading branch information
mile95 authored Jun 8, 2022
2 parents 04aafbb + 9a136a9 commit ed99dd8
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: pr validation
on:
pull_request:
branches:
- master
- abc
env:
IMAGE_NAME: ingress-supervisor-${{ github.event.number }}

Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release Chart

on:
pull_request:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- uses: azure/setup-helm@v1
with:
version: v3.8.1
- run: |
mkdir .deploys
helm package charts/kubesquid-ingress-supervisor -d .deploys
- uses: helm/chart-releaser-action@v1.1.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PACKAGE_PATH: ".deploys"
CR_SKIP_EXISTING: "true"

0 comments on commit ed99dd8

Please sign in to comment.