Skip to content

Commit

Permalink
fix(build)!: delete nightly target as it is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
myypo committed Dec 1, 2024
1 parent e17738d commit 953b1f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
neovim: [stable, nightly]
neovim: [stable]

runs-on: ${{ matrix.os }}

Expand Down
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
.PHONY: nightly stable build test watch lint

VERSION = v0.1.0
.PHONY: nightly build test watch lint

ifeq ($(OS),Windows_NT)
MACHINE = WIN32
Expand Down Expand Up @@ -55,9 +53,6 @@ endif
nightly:
curl -L -o ./lua/compass.$(LIB_EXTENSION) https://github.com/myypo/compass.nvim/releases/download/nightly/$(TARGET).$(LIB_EXTENSION)

stable:
curl -L -o ./lua/compass.$(LIB_EXTENSION) https://github.com/myypo/compass.nvim/releases/download/$(VERSION)/$(TARGET).$(LIB_EXTENSION)

build:
cargo build --release
$(COPY_COMMAND) ./target/release/$(LIB_NAME).$(LIB_EXTENSION) ./lua/compass.$(LIB_EXTENSION)
Expand Down

0 comments on commit 953b1f4

Please sign in to comment.