diff options
author | actboy168 <actboy168@gmail.com> | 2021-02-22 10:52:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 10:52:11 +0800 |
commit | 30bd6373ca3bde03eca4baad2420a2fdc40093f5 (patch) | |
tree | af8c55dc0d32f09fed2c2f0d4635d8f084b6b3cd /.github | |
parent | ebbf09bb27bf54168701f92af51ca774205b77d0 (diff) | |
download | lua-language-server-30bd6373ca3bde03eca4baad2420a2fdc40093f5.zip |
使用低版本的linux编译
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ed35cd6..9de718e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,11 +2,11 @@ name: build on: push jobs: compile: - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [windows, ubuntu, macos] + os: [windows-latest, ubuntu-16.04, macos-latest] steps: - uses: actions/checkout@v1 with: |