Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ inputs:
run-with-arch:
description: Arguments to pass to the `arch` command when running xcodebuild (and xcpretty if enabled). If not specified, `arch` is not included in the commands.
required: false
disable-automatic-package-resolution:
description: Prevent packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
required: true
default: true
runs:
using: node12
main: dist/index.js
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ async function main() {
addFlagArg('skip-unavailable-actions', 'skipUnavailableActions');
addFlagArg('allow-provisioning-updates', 'allowProvisioningUpdates');
addFlagArg('allow-provisioning-device-registration', 'allowProvisioningDeviceRegistration');
addFlagArg('disable-automatic-package-resolution', 'disableAutomaticPackageResolution');

const buildSettings = core.getInput('build-settings');
if (buildSettings) {
Expand Down