1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: use runs-on: ubuntu-20.04 consistently

This commit is contained in:
Delyan Angelov
2021-01-01 15:14:03 +02:00
parent 4bdeb761de
commit 2e8f187819
4 changed files with 29 additions and 29 deletions

View File

@@ -8,7 +8,7 @@ on:
jobs:
build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
compiler: [gcc]
@@ -100,7 +100,7 @@ jobs:
release:
name: Create Github Release
needs: [build-linux, build-windows, build-macos]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Get short tag name
uses: jungwinter/split@v1
@@ -121,7 +121,7 @@ jobs:
publish:
needs: [release]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
version: [linux, macos, windows]