Skip to content

Commit

Permalink
[Fastlane.Swift] Swift fastlane does not run on Apple Silicon fastlan…
Browse files Browse the repository at this point in the history
…e#18502

* [Swift] Fix CI. Package deployment set to macOS 10.12
  • Loading branch information
kikeenrique committed Dec 6, 2021
1 parent 88cc7c4 commit 6874ba6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// swift-tools-version:4.0
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "Fastlane",
platforms: [.macOS(.v10_12)],
products: [
.library(name: "Fastlane", targets: ["Fastlane"])
],
Expand All @@ -18,6 +19,6 @@ let package = Package(
exclude: ["Actions.swift", "Plugins.swift", "main.swift", "formatting", "FastlaneSwiftRunner"]
),
],
swiftLanguageVersions: [4]
swiftLanguageVersions: [.v4]
)

0 comments on commit 6874ba6

Please sign in to comment.