Merge pull request #34 from galasa-dev/iss1893-eventstreams-token #31
Workflow file for this run
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
# | |
# Copyright contributors to the Galasa project | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
name: Release Charts | |
on: | |
push: | |
branches: | |
- prerelease | |
- release | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Run chart-releaser - pre-release | |
if: (github.ref == 'refs/heads/prerelease') | |
uses: helm/chart-releaser-action@main | |
with: | |
skip_existing: true # Skip package upload if release/tag already exists | |
skip_upload: true # Skips upload to index.yaml | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Run chart-releaser - release | |
if: (github.ref == 'refs/heads/release') | |
uses: helm/chart-releaser-action@main | |
with: | |
skip_existing: true # Skip package upload if release/tag already exists | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |