Skip to content

Commit 7f9922b

Browse files
authored
feat: update branding to neru (#52)
1 parent f8767af commit 7f9922b

28 files changed

Lines changed: 265 additions & 263 deletions

.github/workflows/release-please.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,22 @@ jobs:
3838
go-version: ${{ matrix.go }}
3939

4040
# Build artifacts for multiple platforms.
41-
- name: Build govim artifacts
41+
- name: Build neru artifacts
4242
if: ${{ steps.release.outputs.release_created }}
4343
run: |
4444
mkdir -p bin
4545
# Build for darwin-arm64
46-
env CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -ldflags "-s -w -X github.com/y3owk1n/govim/internal/cli.Version=${{ steps.release.outputs.tag_name }}" -trimpath -o bin/govim-darwin-arm64 cmd/govim/main.go
46+
env CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -ldflags "-s -w -X github.com/y3owk1n/neru/internal/cli.Version=${{ steps.release.outputs.tag_name }}" -trimpath -o bin/neru-darwin-arm64 cmd/neru/main.go
4747
4848
# Build for darwin-amd64
49-
env CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w -X github.com/y3owk1n/govim/internal/cli.Version=${{ steps.release.outputs.tag_name }}" -trimpath -o bin/govim-darwin-amd64 cmd/govim/main.go
49+
env CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w -X github.com/y3owk1n/neru/internal/cli.Version=${{ steps.release.outputs.tag_name }}" -trimpath -o bin/neru-darwin-amd64 cmd/neru/main.go
5050
5151
# Generate SHA256 checksum files for each artifact
5252
- name: Generate Checksums
5353
if: ${{ steps.release.outputs.release_created }}
5454
run: |
5555
cd bin
56-
for file in govim-*; do
56+
for file in neru-*; do
5757
shasum -a 256 "$file" | awk '{print $1}' > "$file.sha256"
5858
done
5959
ls -l
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
6666
run: |
67-
for file in bin/govim-*; do
67+
for file in bin/neru-*; do
6868
if [[ "$file" != *.sha256 ]]; then
6969
gh release upload "${{ steps.release.outputs.tag_name }}" "$file"
7070
gh release upload "${{ steps.release.outputs.tag_name }}" "$file.sha256"

CHANGELOG.md

Lines changed: 67 additions & 67 deletions
Large diffs are not rendered by default.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 GoVim Contributors
3+
Copyright (c) 2024 Neru Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)