diff options
| author | James McCoy <jamessan@jamessan.com> | 2021-11-06 15:38:46 -0400 |
|---|---|---|
| committer | James McCoy <jamessan@jamessan.com> | 2021-11-14 08:51:39 -0500 |
| commit | 7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc (patch) | |
| tree | 1f6281672127db19e2fb44961aab2c520ea1c741 /.github/workflows/release.yml | |
| parent | 27f8b04f1791c29825bbe4b10e4a8db9472ecaee (diff) | |
| download | rneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.tar.gz rneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.tar.bz2 rneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.zip | |
ci!: remove win32 builds/releases
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9333449a6c..f1ed05e6cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -125,8 +125,6 @@ jobs: include: - config: MSVC_64 archive: nvim-win64 - - config: MSVC_32 - archive: nvim-win32 name: windows (${{ matrix.config }}) steps: - uses: actions/checkout@v2 @@ -207,11 +205,6 @@ jobs: cd ./nvim-macos sha256sum nvim-macos.tar.gz > nvim-macos.tar.gz.sha256sum echo "SHA_MACOS=$(cat nvim-macos.tar.gz.sha256sum)" >> $GITHUB_ENV - - name: Generate Win32 SHA256 checksums - run: | - cd ./nvim-win32 - sha256sum nvim-win32.zip > nvim-win32.zip.sha256sum - echo "SHA_WIN_32=$(cat nvim-win32.zip.sha256sum)" >> $GITHUB_ENV - name: Generate Win64 SHA256 checksums run: | cd ./nvim-win64 @@ -223,7 +216,7 @@ jobs: NVIM_VERSION: ${{ needs.linux.outputs.version }} run: | envsubst < "$GITHUB_WORKSPACE/.github/workflows/notes.md" > "$RUNNER_TEMP/notes.md" - gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win32/* nvim-win64/* + gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/* if [ "$TAG_NAME" != "nightly" ]; then - gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win32/* nvim-win64/* + gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/* fi |