diff --git a/.github/workflows/manual.yaml b/.github/workflows/manual.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b3d7ccd33eafbf4e14cd854cea35a47f7cd6d2d2 --- /dev/null +++ b/.github/workflows/manual.yaml @@ -0,0 +1,24 @@ +name: Manual release helm chart + +on: + workflow_dispatch: + +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: Add dependencies + run: | + helm repo add groundhog2k https://groundhog2k.github.io/helm-charts + - name: Run Release + uses: helm/chart-releaser-action@v1.2.1 + env: + CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6d4e5c1bb327fbc929ad52177ae45c257d6a3dfe..4af7e0bdd2d799d10590aef508873e6b6d7cd89a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,9 +19,6 @@ jobs: run: | git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - name: Add dependencies - run: | - helm repo add groundhog2k https://groundhog2k.github.io/helm-charts - name: Run Release uses: helm/chart-releaser-action@v1.2.1 env: