diff options
author | James McCoy <jamessan@jamessan.com> | 2020-12-09 07:49:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 07:49:58 -0500 |
commit | bfed67e00ecdf71e0c7d17b1fd802f223b42c800 (patch) | |
tree | 65c7901961538ebe9cdba3671f161c66abacbeb9 | |
parent | fb1c08a86fc6c6e97ec9ae182db5806b94473104 (diff) | |
parent | 3881bc2295a1e7cf112d662564bff12fda497e73 (diff) | |
download | rneovim-bfed67e00ecdf71e0c7d17b1fd802f223b42c800.tar.gz rneovim-bfed67e00ecdf71e0c7d17b1fd802f223b42c800.tar.bz2 rneovim-bfed67e00ecdf71e0c7d17b1fd802f223b42c800.zip |
Merge pull request #13494 from jamessan/release-fixes
GHA: Use oldest OS images to build releases
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2acd615da1..d7f9556028 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,9 +12,10 @@ on: tags: - v[0-9]+.[0-9]+.[0-9]+ +# Build on the oldest supported images, so we have broader compatibility jobs: linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-16.04 outputs: version: ${{ steps.build.outputs.version }} release: ${{ steps.build.outputs.release }} @@ -42,7 +43,6 @@ jobs: retention-days: 1 appimage: - # Build on the oldest supported image, so we have broader compatibility runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v2 |