Skip to content

Commit

Permalink
Update upload_to_esoui.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
barny22 authored Oct 24, 2024
1 parent 07e04a5 commit dd196ad
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/scripts/upload_to_esoui.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ param(
[string]$version,
[string]$file_path,
[string]$changelog_file_path,
[string]$compatible,
[string]$readme_file_path,
[bool]$test_only = $true
)
Expand All @@ -18,9 +19,9 @@ function Upload-Addon {
[int]$addon_id,
[string]$version,
[string]$file_path,
[string]$changelog,
[string]$changelog_file_path,
[string]$compatible,
[string]$description,
[string]$readme_file_path,
[bool]$test_only
)

Expand All @@ -41,9 +42,9 @@ function Upload-Addon {
"id" = $addon_id
"title" = "" # Optional
"version" = $version
"changelog" = $changelog
"changelog" = $changelog_file_path
"compatible" = $compatible
"description" = $description
"description" = $readme_file_path
}

# Debugging-Ausgaben
Expand Down

0 comments on commit dd196ad

Please sign in to comment.