Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,6 @@ jobs:
echo "tag=$TAG"
echo "tag=$TAG" >> $GITHUB_OUTPUT

- name: Build binary with version info
env:
VERSION: ${{ steps.get_tag.outputs.tag }}
run: |
mkdir -p bin
go build -ldflags "-X github.com/apiqube/cli/cmd.version=$VERSION" -o ./bin/qube .

- name: Create GitHub Release (if not exists)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ BUILD_DIR=./bin

.PHONY: build clean

install:
go install github.com/apiqube/cli@latest

build:
@echo "🔧 Building $(BINARY_NAME) version $(VERSION)"
go build \
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/apiqube/cli

go 1.24.3
go 1.24.2

require github.com/spf13/cobra v1.9.1

require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.6 // indirect
)
)
Loading