Skip to content

Commit f06b4f7

Browse files
Updated workflows to add the 'workflow_dispatch' event trigger
1 parent e3a406c commit f06b4f7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/carthage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Carthage
2-
on: push
2+
on: [push, workflow_dispatch]
33

44
jobs:
55
build:

.github/workflows/cocoapods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Cocoapods
2-
on: push
2+
on: [push, workflow_dispatch]
33

44
jobs:
55
lint:

.github/workflows/swift-pacakge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Swift Package
2-
on: push
2+
on: [push, workflow_dispatch]
33

44
jobs:
55
build:

.github/workflows/xcframework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: XCFramework
2-
on: push
2+
on: [push, workflow_dispatch]
33

44
jobs:
55
build:

.github/workflows/xcodebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Xcode Project
2-
on: push
2+
on: [push, workflow_dispatch]
33

44
jobs:
55
ios:

0 commit comments

Comments
 (0)