Skip to content

Commit

Permalink
Fixed release CI/CD and added 'C' as copy to table binding
Browse files Browse the repository at this point in the history
  • Loading branch information
lmika committed Mar 2, 2024
1 parent 5d95d44 commit f5bf31a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22
- name: Configure
run: |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22
- name: Configure
run: |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika"
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.22
- name: Configure
run: |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika"
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Release
if: startsWith(github.ref, 'refs/tags/')
run: |
goreleaser release -f macos.goreleaser.yml --skip-validate --rm-dist
goreleaser release -f macos.goreleaser.yml --skip=validate --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.22
- name: Configure
run: |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:[email protected]/lmika".insteadOf "https://github.com/lmika"
Expand All @@ -75,7 +75,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release -f linux.goreleaser.yml --skip-validate --rm-dist
args: release -f linux.goreleaser.yml --skip=validate --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions internal/dynamo-browse/ui/keybindings/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ func Default() *KeyBindings {
Mark: key.NewBinding(key.WithKeys("m"), key.WithHelp("m", "mark")),
ToggleMarkedItems: key.NewBinding(key.WithKeys("M"), key.WithHelp("M", "toggle marged items")),
CopyItemToClipboard: key.NewBinding(key.WithKeys("c"), key.WithHelp("c", "copy item to clipboard")),
CopyTableToClipboard: key.NewBinding(key.WithKeys("C"), key.WithHelp("C", "copy table to clipboard")),
Rescan: key.NewBinding(key.WithKeys("R"), key.WithHelp("R", "rescan")),
PromptForQuery: key.NewBinding(key.WithKeys("?"), key.WithHelp("?", "prompt for query")),
PromptForFilter: key.NewBinding(key.WithKeys("/"), key.WithHelp("/", "filter")),
Expand Down
2 changes: 1 addition & 1 deletion macos.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ archives:
format: tar.gz
brews:
- name: audax
tap:
repository:
owner: lmika
name: homebrew-audax
token: "{{ .Env.HOMEBREW_GITHUB_TOKEN }}"
Expand Down

0 comments on commit f5bf31a

Please sign in to comment.