devops: use proper tags for self-hosted runner (#4480)

Turns out github already has a reserved bot label called `ubuntu-18.04`,
so marking our self-hosted bot this way was adding it to the pool of
machines that are used here.
This commit is contained in:
Andrey Lushnikov 2020-11-18 11:02:49 -08:00 committed by GitHub
parent 33a168e5cf
commit e2d4379489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ env:
jobs:
ubuntu_18_04:
name: Ubuntu 18.04
runs-on: [self-hosted, ubuntu-18.04]
runs-on: [self-hosted, fast-ubuntu-18.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1

View File

@ -17,7 +17,7 @@ env:
jobs:
ubuntu_18_04:
name: Ubuntu 18.04
runs-on: [self-hosted, ubuntu-18.04]
runs-on: [self-hosted, fast-ubuntu-18.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1