From 7d17cd0ed6b5d9cbf056ba7247f04a19d29a4970 Mon Sep 17 00:00:00 2001
From: Goeran Poehner <goeran.poehner@gmail.com>
Date: Wed, 6 Oct 2021 18:56:07 +0200
Subject: [PATCH] Finally fixed dependencies in workflow

---
 .github/workflows/manual.yaml  | 24 ------------------------
 .github/workflows/release.yaml |  3 +++
 2 files changed, 3 insertions(+), 24 deletions(-)
 delete mode 100644 .github/workflows/manual.yaml

diff --git a/.github/workflows/manual.yaml b/.github/workflows/manual.yaml
deleted file mode 100644
index b3d7ccd3..00000000
--- a/.github/workflows/manual.yaml
+++ /dev/null
@@ -1,24 +0,0 @@
-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 4af7e0bd..6d4e5c1b 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -19,6 +19,9 @@ 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:
-- 
GitLab