build: fixed current version variable

This commit is contained in:
Simeon Radivoev 2026-03-01 18:18:18 +02:00
parent 6132438b71
commit 3e5881300f
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A

View file

@ -9,7 +9,7 @@ jobs:
create-draft: create-draft:
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
current-version: ${{ steps.package-version.outputs }} current-version: ${{ steps.package-version.outputs.current-version }}
steps: steps:
- name: Checkout - name: Checkout
@ -61,7 +61,7 @@ jobs:
BUILD_DIR: ./build/${{ runner.os }} BUILD_DIR: ./build/${{ runner.os }}
- name: Install 7zip (minimal) - name: Install 7zip (minimal)
if: runner.os == 'Linux' if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y p7zip-full run: sudo apt-get update && sudo apt-get install -y p7zip-full
- name: Upload Linux Artifact - name: Upload Linux Artifact