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