1
0

Compare commits

..

1 Commits

Author SHA1 Message Date
78d0390d05
feat(api): job description 2024-03-04 18:32:30 +00:00
2 changed files with 1 additions and 10 deletions

View File

@ -18,7 +18,7 @@ concurrency:
jobs:
build:
name: Build
runs-on: macOS-12
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1

View File

@ -92,15 +92,6 @@ func Load(localpath string, name string) (err error) {
return
}
cmd = exec.Command(Runtime, "tag", "localhost/"+name, name)
log.Debug().Msgf("%v", cmd)
raw, err = cmd.CombinedOutput()
if err != nil {
log.Debug().Err(err).Msg(string(raw))
return
}
return
}