File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : macos-12
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v3
18
18
- name : Pull cache
19
- uses : actions/cache@v2
19
+ uses : actions/cache@v3
20
20
with :
21
21
path : .build
22
22
key : ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
30
30
needs : build-rswift
31
31
steps :
32
32
- name : Checkout
33
- uses : actions/checkout@v2
33
+ uses : actions/checkout@v3
34
34
- name : Download build
35
35
uses : actions/download-artifact@v1
36
36
with :
41
41
mv rswift-dev/rswift .build/release/rswift
42
42
chmod +x .build/release/rswift
43
43
- name : Pull cache
44
- uses : actions/cache@v2
44
+ uses : actions/cache@v3
45
45
id : podcache-ios
46
46
with :
47
47
path : Examples/ResourceApp/Pods
60
60
needs : build-rswift
61
61
steps :
62
62
- name : Checkout
63
- uses : actions/checkout@v2
63
+ uses : actions/checkout@v3
64
64
- name : Download build
65
65
uses : actions/download-artifact@v1
66
66
with :
79
79
needs : build-rswift
80
80
steps :
81
81
- name : Checkout
82
- uses : actions/checkout@v2
82
+ uses : actions/checkout@v3
83
83
- name : Download build
84
84
uses : actions/download-artifact@v1
85
85
with :
97
97
needs : build-rswift
98
98
steps :
99
99
- name : Checkout
100
- uses : actions/checkout@v2
100
+ uses : actions/checkout@v3
101
101
- name : Download build
102
102
uses : actions/download-artifact@v1
103
103
with :
@@ -115,9 +115,9 @@ jobs:
115
115
runs-on : macos-12
116
116
steps :
117
117
- name : Checkout
118
- uses : actions/checkout@v2
118
+ uses : actions/checkout@v3
119
119
- name : Pull cache
120
- uses : actions/cache@v2
120
+ uses : actions/cache@v3
121
121
with :
122
122
path : .build
123
123
key : ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
Original file line number Diff line number Diff line change 12
12
runs-on : macos-12
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
16
16
- name : Set version
17
17
run : |
18
18
sed -i "" "s/\(static let version = \"\).*\(\"\)/\1${TAG}\2/" Sources/rswift/Config.swift
46
46
run : |
47
47
codesign --force --options runtime --sign 'Developer ID Application: Mathijs Kadijk (5Z49PA849J)' .build/apple/Products/Release/rswift
48
48
- name : Store build artifact
49
- uses : actions/upload-artifact@v1
49
+ uses : actions/upload-artifact@v3
50
50
with :
51
51
name : rswift-${{ github.event.release.tag_name }}
52
52
path : .build/apple/Products/Release/rswift
You can’t perform that action at this time.
0 commit comments