mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 03:03:00 +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
|
||||
run: |
|
||||
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
|
||||
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
|
||||
echo ::set-env name=PYTHON_EXEC::python3
|
||||
|
@ -110,11 +111,13 @@ jobs:
|
|||
working-directory: ${{runner.workspace}}/build
|
||||
env:
|
||||
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"
|
||||
|
||||
build_full_linux:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
JOB_NAME: build_full_linux
|
||||
if: github.event.action != 'labeled' || github.event.label.name == 'rebuild'
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
|
Loading…
Reference in a new issue