Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
curiositycasualty committed Dec 16, 2024
1 parent fe31f16 commit 29015fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
- uses: actions/checkout@v4

- uses: ko-build/[email protected]
- run: ko build --verbose ./cmd/yum2npm
env:
- env:
KO_DOCKER_REPO: ghcr.io/kong/yum2npm
KO_DATA_PATH: kodata
KO_DATA_PATH: /kodata
run: |
ko build \
${{ runner.debug == '1' && '--verbose' || '' }} \
./cmd/yum2npm
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/yum2npm/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import "github.com/jessevdk/go-flags"

type Options struct {
Config string `long:"config" short:"c" default:"/var/run/ko/config.yaml" description:"Path to config.yaml"`
Config string `long:"config" short:"c" default:"/kodata/config.yaml" description:"Path to config.yaml"`
Version bool `login:"version" short:"v" description:"Print version information"`
}

Expand Down

0 comments on commit 29015fc

Please sign in to comment.