File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 2020> [ !IMPORTANT]
2121> 3.0 is coming, powered by Swiftly 🚀 - follow progress on https://github.com/swift-actions/setup-swift/pull/710
2222
23-
2423## Usage
2524
2625To run the action with the latest swift version available, simply add the action as a step in your workflow:
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export async function setupKeys(os: OS) {
99 "https://swift.org/keys/all-keys.asc" ,
1010 ) ;
1111
12- if ( os === ' linux' || os === ' darwin' ) {
12+ if ( os === " linux" || os === " darwin" ) {
1313 core . debug ( "Examining verification keys" ) ;
1414 await exec ( `file "${ path } "` ) ;
1515 const isPlaintext = await exec ( `gunzip --test "${ path } "` , undefined , {
@@ -24,7 +24,7 @@ export async function setupKeys(os: OS) {
2424 ] ) ;
2525 }
2626
27- if ( os === ' win32' ) {
27+ if ( os === " win32" ) {
2828 core . debug ( "Importing verification keys" ) ;
2929 await exec ( `gpg --import "${ path } "` ) ;
3030 }
You can’t perform that action at this time.
0 commit comments