Compare commits
2 Commits
fc193afe92
...
ee1262e983
Author | SHA1 | Date | |
---|---|---|---|
ee1262e983 | |||
e51a528838 |
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
@ -18,7 +18,7 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-12
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
@ -92,6 +92,15 @@ func Load(localpath string, name string) (err error) {
|
|||||||
return
|
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
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user