- Implements all placeholder Go examples in the `examples` directory. - Corrects the `run_matrix_programmatically` example to use the `borg` package. - Refactors the code to centralize the matrix execution logic in the `matrix` package. - Updates the documentation to include a new "Programmatic Usage" section that describes all of the Go examples. - Updates the "Terminal Isolation Matrix" section to remove manual 'runc' instructions, emphasizing that 'borg run' handles this process to maintain security and isolation. - Adds missing examples for 'collect github repos', 'collect github release', and 'compile' commands to the documentation.
42 lines
919 B
Go
42 lines
919 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/Snider/Borg/pkg/github"
|
|
)
|
|
|
|
func main() {
|
|
log.Println("Collecting GitHub release...")
|
|
|
|
owner, repo, err := github.ParseRepoFromURL("https://github.com/Snider/Borg")
|
|
if err != nil {
|
|
log.Fatalf("Failed to parse repo from URL: %v", err)
|
|
}
|
|
|
|
release, err := github.GetLatestRelease(owner, repo)
|
|
if err != nil {
|
|
log.Fatalf("Failed to get latest release: %v", err)
|
|
}
|
|
|
|
if len(release.Assets) == 0 {
|
|
log.Println("No assets found in the latest release.")
|
|
return
|
|
}
|
|
|
|
asset := release.Assets[0]
|
|
log.Printf("Downloading asset: %s", asset.GetName())
|
|
|
|
data, err := github.DownloadReleaseAsset(asset)
|
|
if err != nil {
|
|
log.Fatalf("Failed to download asset: %v", err)
|
|
}
|
|
|
|
err = os.WriteFile(asset.GetName(), data, 0644)
|
|
if err != nil {
|
|
log.Fatalf("Failed to write asset to file: %v", err)
|
|
}
|
|
|
|
log.Printf("Successfully downloaded asset to %s", asset.GetName())
|
|
}
|