From 946c8fd2886df9db288797c257bf067b904a3551 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 21 Jul 2022 17:44:44 +0800 Subject: ci(labeler): do not add "column" label for mark.{c,h} (#19455) --- .github/labeler.yml | 2 -- 1 file changed, 2 deletions(-) (limited to '.github') diff --git a/.github/labeler.yml b/.github/labeler.yml index 04e7b281d1..e86c7aabe8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -27,8 +27,6 @@ - src/nvim/terminal.* "column": - - src/nvim/mark.h - - src/nvim/mark.c - src/nvim/sign* "folds": -- cgit From 3f2e1c1db94e10d4c84d0d7be726419a793b079c Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Fri, 22 Jul 2022 22:08:11 +0800 Subject: ci(release): use cpack on macOS #19459 We use `cpack` to generate the release tarballs on Linux. Now that we don't need to bundle `libintl`, we can do the same on macOS. --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d57c09ab8..cab57add52 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,14 +112,12 @@ jobs: CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH= $OSX_FLAGS" \ DEPS_CMAKE_FLAGS="$OSX_FLAGS" make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-macos" install - - name: Create package - run: | - cd "$GITHUB_WORKSPACE/build/release" - tar cfz nvim-macos.tar.gz nvim-macos + cd "$GITHUB_WORKSPACE/build/" + cpack -C "$NVIM_BUILD_TYPE" - uses: actions/upload-artifact@v3 with: name: nvim-macos - path: build/release/nvim-macos.tar.gz + path: build/nvim-macos.tar.gz retention-days: 1 windows: -- cgit From 6c26d0b068a3aee4155f38bbf52e3568073ede8a Mon Sep 17 00:00:00 2001 From: Vedant <83997633+vedantmgoyal2009@users.noreply.github.com> Date: Mon, 25 Jul 2022 16:28:16 +0530 Subject: ci(distribution): auto-release winget #19121 - forked winget-pkgs to https://github.com/neovim/winget-pkgs - key stored in WINGET_TOKEN at https://github.com/neovim/neovim/settings/secrets/actions - deploy key public key stored at https://github.com/neovim/winget-pkgs/settings/keys --- .github/workflows/release-winget.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/release-winget.yml (limited to '.github') diff --git a/.github/workflows/release-winget.yml b/.github/workflows/release-winget.yml new file mode 100644 index 0000000000..c3ca5fe752 --- /dev/null +++ b/.github/workflows/release-winget.yml @@ -0,0 +1,12 @@ +name: Publish to WinGet +on: + release: + types: [released] +jobs: + publish: + runs-on: windows-latest # action can only be run on windows + steps: + - uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: Neovim.Neovim + token: ${{ secrets.WINGET_TOKEN }} -- cgit