From 34957e0c18caf38cf551922d2ce7d3e34d09421d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 14 Mar 2025 15:45:08 -0500 Subject: [PATCH] export env proper --- .gitea/workflows/release-charts-cloudflared.yml | 4 ++-- .gitea/workflows/release-charts-generic-device-plugin.yml | 4 ++-- .gitea/workflows/release-charts-postgres-cluster.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/release-charts-cloudflared.yml b/.gitea/workflows/release-charts-cloudflared.yml index 7f7088a..92fcf19 100644 --- a/.gitea/workflows/release-charts-cloudflared.yml +++ b/.gitea/workflows/release-charts-cloudflared.yml @@ -45,8 +45,8 @@ jobs: - name: Extract Chart Metadata run: | cd $WORKFLOW_DIR - CHART_VERSION=$(yq '.version' Chart.yaml) - CHART_NAME=$(yq '.name' Chart.yaml) + echo "CHART_VERSION=$(yq '.version' Chart.yaml)" >> $GITEA_ENV + echo "CHART_NAME=$(yq '.name' Chart.yaml)" >> $GITEA_ENV - name: Release Helm Chart uses: akkuman/gitea-release-action@v1 diff --git a/.gitea/workflows/release-charts-generic-device-plugin.yml b/.gitea/workflows/release-charts-generic-device-plugin.yml index f740e4e..50e2759 100644 --- a/.gitea/workflows/release-charts-generic-device-plugin.yml +++ b/.gitea/workflows/release-charts-generic-device-plugin.yml @@ -45,8 +45,8 @@ jobs: - name: Extract Chart Metadata run: | cd $WORKFLOW_DIR - CHART_VERSION=$(yq '.version' Chart.yaml) - CHART_NAME=$(yq '.name' Chart.yaml) + echo "CHART_VERSION=$(yq '.version' Chart.yaml)" >> $GITEA_ENV + echo "CHART_NAME=$(yq '.name' Chart.yaml)" >> $GITEA_ENV - name: Release Helm Chart uses: akkuman/gitea-release-action@v1 diff --git a/.gitea/workflows/release-charts-postgres-cluster.yml b/.gitea/workflows/release-charts-postgres-cluster.yml index 6b2a4d8..4f6c6e0 100644 --- a/.gitea/workflows/release-charts-postgres-cluster.yml +++ b/.gitea/workflows/release-charts-postgres-cluster.yml @@ -45,8 +45,8 @@ jobs: - name: Extract Chart Metadata run: | cd $WORKFLOW_DIR - CHART_VERSION=$(yq '.version' Chart.yaml) - CHART_NAME=$(yq '.name' Chart.yaml) + echo "CHART_VERSION=$(yq '.version' Chart.yaml)" >> $GITEA_ENV + echo "CHART_NAME=$(yq '.name' Chart.yaml)" >> $GITEA_ENV - name: Release Helm Chart uses: akkuman/gitea-release-action@v1