Skip to content

Commit

Permalink
Allow manual trigger of workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
robholland committed Jan 30, 2024
1 parent f9df7b5 commit 14b543a
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions .github/workflows/publish-charts.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,18 @@
name: Release Charts

on:
push:
branches:
- publish-test
workflow_dispatch:
inputs:
version:
description: "Temporal version to use for release (for example 1.22.4)"
required: true

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
- name: Empty
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: .
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
echo Doing nothing

0 comments on commit 14b543a

Please sign in to comment.