update: added envs

This commit is contained in:
MrMirDan 2026-04-20 11:39:07 +03:00
parent fbde1aab00
commit 631d4c7fd0

View file

@ -743,15 +743,12 @@ jobs:
needs: Build-Linux-Ubuntu
env:
QT_VERSION: 6.10.1
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: AmneziaVPN_${{ env.VERSION }}_linux_x64.tar.zip
path: build/
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
@ -768,6 +765,19 @@ jobs:
py7zrversion: '==0.22.*'
extra: '--base ${{ env.QT_MIRROR }}'
- name: 'Get version from CMakeLists.txt'
id: get_version
run: |
VERSION=$(grep 'set(AMNEZIAVPN_VERSION' CMakeLists.txt | sed -E 's/.*AMNEZIAVPN_VERSION ([0-9]+.[0-9]+.[0-9]+.[0-9]+)\)/\1/')
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "Version: $VERSION"
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: AmneziaVPN_${{ env.VERSION }}_linux_x64.tar.zip
path: build/
- name: Run tests
run: |
cd build
@ -780,15 +790,12 @@ jobs:
needs: Build-Windows
env:
QT_VERSION: 6.10.1
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: AmneziaVPN_${{ env.VERSION }}_x64.exe
path: build
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
@ -805,6 +812,20 @@ jobs:
py7zrversion: '==0.22.*'
extra: '--base ${{ env.QT_MIRROR }}'
- name: 'Get version from CMakeLists.txt'
id: get_version
shell: bash
run: |
VERSION=$(grep 'set(AMNEZIAVPN_VERSION' CMakeLists.txt | sed -E 's/.*AMNEZIAVPN_VERSION ([0-9]+.[0-9]+.[0-9]+.[0-9]+)\)/\1/')
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "Version: $VERSION"
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: AmneziaVPN_${{ env.VERSION }}_x64.exe
path: build
- name: Run tests
shell: bash
run: |