Fix: Fix building releases with the new actions structure

This commit is contained in:
Bojan Čekrlić 2022-06-19 12:37:21 +02:00
parent e145f8761e
commit 470990fe14

View file

@ -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: