Skip to content

Commit f99d2fd

Browse files
committed
1 parent c38df05 commit f99d2fd

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
steps:
1818
- name: Create New Skip Package (Release)
1919
run: |
20-
mkdir release
21-
cd release
22-
swift package init --name SomeLibrary
20+
mkdir SomeLibrary
21+
cd SomeLibrary
22+
swift package init
2323
2424
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skip", from: "0.0.0")]' >> Package.swift
2525
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skiphub", from: "0.0.0")]' >> Package.swift
@@ -32,9 +32,9 @@ jobs:
3232
3333
- name: Create New Skip Package (Debug)
3434
run: |
35-
mkdir debug
36-
cd debug
37-
swift package init --name SomeOtherLibrary
35+
mkdir SomeOtherLibrary
36+
cd SomeOtherLibrary
37+
swift package init
3838
3939
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skip", branch: "main")]' >> Package.swift
4040
echo 'package.dependencies += [.package(url: "https://github.com/skiptools/skiphub", branch: "main")]' >> Package.swift
@@ -44,3 +44,4 @@ jobs:
4444
swift test --configuration debug
4545
brew install tree || true
4646
tree -l -I build
47+

0 commit comments

Comments
 (0)