Skip to content

Commit 8585f31

Browse files
committed
feat: nix packages support
1 parent f4d5540 commit 8585f31

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
go-version: 1.24
1919
- name: install snapcraft
2020
uses: samuelmeuli/action-snapcraft@v3
21+
- name: install nix
22+
uses: cachix/install-nix-action@v31
2123
- name: goreleaser-setup
2224
uses: goreleaser/goreleaser-action@v5
2325
with:

.goreleaser.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,52 @@ homebrew_casks:
6060
name: homebrew-tap
6161
homepage: https://github.com/lucassabreu/clockify-cli
6262
description: Helps to interact with Clockfy's API
63+
64+
nix:
65+
- name: clockify-cli
66+
67+
goamd64: v1
68+
69+
# The project name and current git tag are used in the format string.
70+
#
71+
# Templates: allowed.
72+
commit_msg_template: "{{ .ProjectName }}: {{ .Tag }}"
73+
74+
# Your app's homepage.
75+
#
76+
# Templates: allowed.
77+
# Default: inferred from global metadata.
78+
homepage: "https://clockify-cli.netlify.app/"
79+
80+
# Your app's description.
81+
#
82+
# Templates: allowed.
83+
# Default: inferred from global metadata.
84+
description: "A simple cli to manage your time entries on Clockify from terminal"
85+
86+
# Repository to push the generated files to.
87+
repository:
88+
# Repository owner.
89+
#
90+
# Templates: allowed.
91+
owner: lucassabreu
92+
93+
# Repository name.
94+
#
95+
# Templates: allowed.
96+
name: nux-packages
97+
98+
# Optionally a branch can be provided.
99+
#
100+
# Default: default repository branch.
101+
# Templates: allowed.
102+
branch: main
103+
104+
# Sets up pull request creation instead of just pushing to the given branch.
105+
# Make sure the 'branch' property is different from base before enabling
106+
# it.
107+
#
108+
# This might require a personal access token.
109+
pull_request:
110+
# Whether to enable it or not.
111+
enabled: true

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
## [Unreleased]
1313

14+
## [v0.56.0] - 2025-09-30
15+
16+
### Added
17+
18+
- support for nix packages
19+
1420
## [v0.55.2] - 2025-07-28
1521

1622
### Fixed
@@ -1256,7 +1262,8 @@ time entry.
12561262
- Golang CLI using [cobra](https://github.com/spf13/cobra)
12571263
- Makefile to help setup actions
12581264

1259-
[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.55.2...HEAD
1265+
[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.56.0...HEAD
1266+
[v0.56.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.56.0
12601267
[v0.55.2]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.55.2
12611268
[v0.55.1]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.55.1
12621269
[v0.55.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.55.0

0 commit comments

Comments
 (0)