From 15b3466b30a4fbcccebf293a870d3bdb2a4a160b Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Mon, 21 Jul 2025 17:48:21 +0200 Subject: [PATCH] wrong version ? --- .gitea/workflows/varnish-exporter.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/varnish-exporter.yml b/.gitea/workflows/varnish-exporter.yml index 9076b0f..5dc40c3 100644 --- a/.gitea/workflows/varnish-exporter.yml +++ b/.gitea/workflows/varnish-exporter.yml @@ -38,19 +38,21 @@ jobs: commit_message: gitea-actions auto commit - update version push_options: '--force' - - name: degug output + - name: debug output value run: echo "${{ steps.new_version.outputs.build }}" build: - needs: validate - if: needs.validate.outputs.build == 'true' + #needs: validate + #if: needs.validate.outputs.build == 'true' timeout-minutes: 2 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Get version - run: VERSION=`cat .version` + run: | + VERSION=`cat .version` + echo "$VERSION" - name: Setup go uses: actions/setup-go@v4