diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/notes.md | 3 | ||||
-rw-r--r-- | .github/workflows/release.yml | 11 |
3 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bedafefd0..d07b9fdac7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,7 +103,7 @@ jobs: strategy: fail-fast: false matrix: - config: [ MINGW_64-gcov, MINGW_32, MSVC_64, MSVC_32 ] + config: [ MINGW_64-gcov, MSVC_64 ] name: windows (${{ matrix.config }}) steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/notes.md b/.github/workflows/notes.md index 20f998ff32..9928d472b3 100644 --- a/.github/workflows/notes.md +++ b/.github/workflows/notes.md @@ -6,7 +6,7 @@ ${NVIM_VERSION} ### Windows -1. Extract **nvim-win64.zip** (or **nvim-win32.zip**) +1. Extract **nvim-win64.zip** 2. Run `nvim-qt.exe` ### macOS @@ -37,5 +37,4 @@ ${SHA_APP_IMAGE} ${SHA_APP_IMAGE_ZSYNC} ${SHA_MACOS} ${SHA_WIN_64} -${SHA_WIN_32} ``` 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 |