From 470990fe14bdc1dab265313f793031f2d72e6f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bojan=20=C4=8Cekrli=C4=87?= Date: Sun, 19 Jun 2022 12:37:21 +0200 Subject: [PATCH] Fix: Fix building releases with the new actions structure --- .github/workflows/tags.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tags.yml b/.github/workflows/tags.yml index a167d3f..aee63d7 100644 --- a/.github/workflows/tags.yml +++ b/.github/workflows/tags.yml @@ -153,6 +153,13 @@ jobs: with: fetch-depth: 0 + - name: Get release version + id: version_number + shell: bash + run: | + echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV + echo "::set-output name=RELEASE_VERSION::${GITHUB_REF:10}" + - name: Checkout gh-pages uses: actions/checkout@v3 with: