Skip to content

Commit

Permalink
Fix to skip existing in release flow (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
tei-k authored Jul 15, 2021
1 parent 32f2724 commit cd59731
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release Helm Charts

on: [ workflow_dispatch ]
on:
workflow_dispatch:
branches:
- main

jobs:
release:
Expand All @@ -25,7 +28,8 @@ jobs:
version: ${{ env.HELM_VERSION }}

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.0
uses: helm/chart-releaser-action@v1.2.1
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CR_PAGES_BRANCH: main
CR_SKIP_EXISTING: true

0 comments on commit cd59731

Please sign in to comment.