mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 14:10:40 +02:00
- set the correct artifact filter
- add missing JOB_NAME env
This commit is contained in:
parent
53bb62756f
commit
35efa33b74
1 changed files with 4 additions and 1 deletions
5
.github/workflows/pr_build.yml
vendored
5
.github/workflows/pr_build.yml
vendored
|
@ -39,6 +39,7 @@ jobs:
|
||||||
id: buildenv1
|
id: buildenv1
|
||||||
run: |
|
run: |
|
||||||
echo ::set-env name=GIT_COMMIT_SHORT::`echo $GIT_COMMIT | cut -c1-7`
|
echo ::set-env name=GIT_COMMIT_SHORT::`echo $GIT_COMMIT | cut -c1-7`
|
||||||
|
echo ::set-env name=JOB_NAME::build-${{matrix.os}}
|
||||||
# Linux build variables
|
# Linux build variables
|
||||||
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
|
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
|
||||||
echo ::set-env name=PYTHON_EXEC::python3
|
echo ::set-env name=PYTHON_EXEC::python3
|
||||||
|
@ -110,11 +111,13 @@ jobs:
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
env:
|
env:
|
||||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||||
ARTIFACT_PATTERN: HighFidelity-Beta-PR${{ github.event.number }}-*.exe
|
ARTIFACT_PATTERN: ProjectAthena-Alpha-PR${{ github.event.number }}-*.exe
|
||||||
run: python "$GITHUB_WORKSPACE\tools\ci-scripts\upload_to_publish_server.py"
|
run: python "$GITHUB_WORKSPACE\tools\ci-scripts\upload_to_publish_server.py"
|
||||||
|
|
||||||
build_full_linux:
|
build_full_linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
JOB_NAME: build_full_linux
|
||||||
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild'
|
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
Loading…
Reference in a new issue