Update actions/setup-node action to v3.8.2 #323
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Xcode | |
# Build, test, and archive an Xcode workspace on macOS. | |
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/xcode | |
trigger: | |
- main | |
pool: | |
vmImage: 'macos-latest' | |
steps: | |
- task: Xcode@5 | |
inputs: | |
actions: 'build' | |
scheme: '' | |
sdk: 'iphoneos' | |
configuration: 'Release' | |
xcWorkspacePath: '**/*.xcodeproj/project.xcworkspace' | |
xcodeVersion: 'default' # Options: 8, 9, 10, 11, 12, default, specifyPath |