Skip to content

Commit

Permalink
fix: Fix output path for zip archive target
Browse files Browse the repository at this point in the history
  • Loading branch information
othyn committed Jul 14, 2023
1 parent f62ff08 commit cfa1191
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,20 +99,13 @@ platform :mac do
}
)

output_archive_path = "build/AutoClicker.zip"

# https://docs.fastlane.tools/actions/zip
zip(
output_archive_path = zip(
path: "build/AutoClicker.app",
output_path: output_archive_path,
output_path: "build/AutoClicker.zip",
verbose: true
)

unless File.exist?(output_archive_path)
UI.error("File does not exist: #{output_archive_path}")
raise "Exiting lane due to missing output archive!"
end

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
repository_name: "othyn/macos-auto-clicker",
Expand Down

0 comments on commit cfa1191

Please sign in to comment.