File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
- name : Create New Skip Package (Release)
19
19
run : |
20
- mkdir release
21
- cd release
22
- swift package init --name SomeLibrary
20
+ mkdir SomeLibrary
21
+ cd SomeLibrary
22
+ swift package init
23
23
24
24
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skip", from: "0.0.0")]' >> Package.swift
25
25
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skiphub", from: "0.0.0")]' >> Package.swift
32
32
33
33
- name : Create New Skip Package (Debug)
34
34
run : |
35
- mkdir debug
36
- cd debug
37
- swift package init --name SomeOtherLibrary
35
+ mkdir SomeOtherLibrary
36
+ cd SomeOtherLibrary
37
+ swift package init
38
38
39
39
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skip", branch: "main")]' >> Package.swift
40
40
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skiphub", branch: "main")]' >> Package.swift
44
44
swift test --configuration debug
45
45
brew install tree || true
46
46
tree -l -I build
47
+
You can’t perform that action at this time.
0 commit comments