Parse distro version ID instead of build ID
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Elara 2022-11-20 21:43:58 +00:00 committed by GitHub
parent 320342cfb4
commit c489f4864e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ type OSRelease struct {
PrettyName string PrettyName string
ID string ID string
Like []string Like []string
BuildID string VersionID string
ANSIColor string ANSIColor string
HomeURL string HomeURL string
DocumentationURL string DocumentationURL string
@ -86,7 +86,7 @@ func ParseOSRelease(ctx context.Context) (*OSRelease, error) {
Name: runner.Vars["NAME"].Str, Name: runner.Vars["NAME"].Str,
PrettyName: runner.Vars["PRETTY_NAME"].Str, PrettyName: runner.Vars["PRETTY_NAME"].Str,
ID: runner.Vars["ID"].Str, ID: runner.Vars["ID"].Str,
BuildID: runner.Vars["BUILD_ID"].Str, VersionID: runner.Vars["VERSION_ID"].Str,
ANSIColor: runner.Vars["ANSI_COLOR"].Str, ANSIColor: runner.Vars["ANSI_COLOR"].Str,
HomeURL: runner.Vars["HOME_URL"].Str, HomeURL: runner.Vars["HOME_URL"].Str,
DocumentationURL: runner.Vars["DOCUMENTATION_URL"].Str, DocumentationURL: runner.Vars["DOCUMENTATION_URL"].Str,