Skip to content

Commit

Permalink
fix: Could this be the problem? It appears to have nested into anothe…
Browse files Browse the repository at this point in the history
…r directory, I reckon this is an undocumented behavior change in the macOS 13 upgrade for the runner. Looking at the build path for the output fragment its changed, from /Users/runner/work/macos-auto-clicker/build/AutoClicker.app to /Users/runner/work/macos-auto-clicker/macos-auto-clicker/build/AutoClicker.app, and extra nested '/macos-auto-clicker' directory has appeared from somewhere, but I have no idea where!
  • Loading branch information
othyn committed Jul 14, 2023
1 parent 44d18fa commit 16951f5
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true
end

lane :beta do
Expand Down Expand Up @@ -92,12 +92,12 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
Expand Down Expand Up @@ -193,12 +193,12 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true) # optional, default is true

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
Expand Down

0 comments on commit 16951f5

Please sign in to comment.