From 66091c5230eb10d145b255387a5bf5ef8be19815 Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Mon, 21 Jul 2025 23:48:22 +0200 Subject: [PATCH] env.version --- .gitea/workflows/varnish-exporter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/varnish-exporter.yml b/.gitea/workflows/varnish-exporter.yml index 69bd414..2c134b7 100644 --- a/.gitea/workflows/varnish-exporter.yml +++ b/.gitea/workflows/varnish-exporter.yml @@ -59,7 +59,7 @@ jobs: - name: Set version to env vars run: | echo "VERSION=${{ needs.validate.outputs.version }}" >> $GITHUB_ENV - echo "version: $VERSION" + echo "version: ${{ env.VERSION }}" - name: Setup go uses: actions/setup-go@v4 @@ -107,7 +107,7 @@ jobs: - name: Create release uses: akkuman/gitea-release-action@v1 with: - tag_name: "$VERSION" + tag_name: ${{ env.VERSION}} files: |- bin/** token: "${{ secrets.RELEASE_TOKEN }}"