mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 14:52:46 +02:00
Use output var in second step
This commit is contained in:
parent
066dd2a6cc
commit
ea77db85d3
1 changed files with 2 additions and 2 deletions
4
.github/workflows/pr_build.yml
vendored
4
.github/workflows/pr_build.yml
vendored
|
@ -44,7 +44,6 @@ jobs:
|
||||||
id: buildenv1
|
id: buildenv1
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=github_sha_short::`echo $GIT_COMMIT | cut -c1-7`
|
echo ::set-output name=github_sha_short::`echo $GIT_COMMIT | cut -c1-7`
|
||||||
echo "GIT_COMMIT_SHORT=${{github_sha_short}}" >> $GITHUB_ENV
|
|
||||||
echo "JOB_NAME=build (${{matrix.os}}, ${{matrix.build_type}})" >> $GITHUB_ENV
|
echo "JOB_NAME=build (${{matrix.os}}, ${{matrix.build_type}})" >> $GITHUB_ENV
|
||||||
|
|
||||||
# Linux build variables
|
# Linux build variables
|
||||||
|
@ -73,7 +72,8 @@ jobs:
|
||||||
echo "${{ steps.buildenv1.outputs.symbols_archive }}"
|
echo "${{ steps.buildenv1.outputs.symbols_archive }}"
|
||||||
echo "ARTIFACT_PATTERN=Vircadia-Alpha-PR${{ github.event.number }}-*.$INSTALLER_EXT" >> $GITHUB_ENV
|
echo "ARTIFACT_PATTERN=Vircadia-Alpha-PR${{ github.event.number }}-*.$INSTALLER_EXT" >> $GITHUB_ENV
|
||||||
# Build type variables
|
# Build type variables
|
||||||
echo "INSTALLER=Vircadia-Alpha-$RELEASE_NUMBER-$GIT_COMMIT_SHORT.$INSTALLER_EXT" >> $GITHUB_ENV
|
echo "GIT_COMMIT_SHORT=${{github_sha_short}}" >> $GITHUB_ENV
|
||||||
|
echo "INSTALLER=Vircadia-Alpha-$RELEASE_NUMBER-${{ github_sha_short }}.$INSTALLER_EXT" >> $GITHUB_ENV
|
||||||
- name: Clear Working Directory
|
- name: Clear Working Directory
|
||||||
if: startsWith(matrix.os, 'windows')
|
if: startsWith(matrix.os, 'windows')
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in a new issue