Fix setoutput spam
This commit is contained in:
parent
2cca889bb6
commit
98c24aa881
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -59,9 +59,9 @@ jobs:
|
||||||
echo "MinGW cross target: ${mingw_target}"
|
echo "MinGW cross target: ${mingw_target}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "::set-output name=vswhere-target::${vswhere_target}"
|
echo "vswhere-target::${vswhere_target}" >> $GITHUB_OUTPUT
|
||||||
echo "::set-output name=msvc-target::${msvc_target}"
|
echo "msvc-target::${msvc_target}" >> $GITHUB_OUTPUT
|
||||||
echo "::set-output name=mingw-target::${mingw_target}"
|
echo "mingw-target::${mingw_target}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Set package identifier
|
- name: Set package identifier
|
||||||
id: package-identify
|
id: package-identify
|
||||||
|
@ -88,8 +88,8 @@ jobs:
|
||||||
echo "Package identifier: ${package_name}"
|
echo "Package identifier: ${package_name}"
|
||||||
echo "Package file: ${package_name}${package_ext}"
|
echo "Package file: ${package_name}${package_ext}"
|
||||||
|
|
||||||
echo "::set-output name=id::${package_name}"
|
echo "id::${package_name}" >> $GITHUB_OUTPUT
|
||||||
echo "::set-output name=filename::${package_name}${package_ext}"
|
echo "filename::${package_name}${package_ext}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Set build cores amount
|
- name: Set build cores amount
|
||||||
id: build-cores
|
id: build-cores
|
||||||
|
@ -102,7 +102,7 @@ jobs:
|
||||||
|
|
||||||
echo "Amount of cores we can build with: ${amount}"
|
echo "Amount of cores we can build with: ${amount}"
|
||||||
|
|
||||||
echo "::set-output name=amount::${amount}"
|
echo "amount::${amount}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Setup Toolchain [Windows MSVC]
|
- name: Setup Toolchain [Windows MSVC]
|
||||||
if: ${{ matrix.config.compiler == 'msvc' }}
|
if: ${{ matrix.config.compiler == 'msvc' }}
|
||||||
|
|
Loading…
Reference in a new issue