File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ jobs:
118
118
xcode : " 12.3.0"
119
119
steps :
120
120
- checkout
121
+ - run : git clone https://github.com/kylef/swiftenv.git ~/.swiftenv
122
+ - run : echo 'export SWIFTENV_ROOT="$HOME/.swiftenv"' >> $BASH_ENV
123
+ - run : echo 'export PATH="$SWIFTENV_ROOT/bin:$PATH"' >> $BASH_ENV
124
+ - run : echo 'eval "$(swiftenv init -)"' >> $BASH_ENV
125
+ - run : swiftenv install 5.0.3 && swiftenv global 5.0.3
121
126
-
run :
git clone https://InstabugCI:[email protected] /Instabug/Escape.git
122
127
- run : cd Escape; swift build -c release -Xswiftc -static-stdlib
123
128
- run : cd Escape/.build/release; cp -f Escape /usr/local/bin/escape
@@ -140,17 +145,18 @@ workflows:
140
145
filters :
141
146
branches :
142
147
only : master
143
- - publish :
148
+ - release :
144
149
context : cross-platform
145
150
requires :
146
151
- hold
147
152
filters :
148
153
branches :
149
154
only : master
150
- - release :
155
+ - publish :
151
156
context : cross-platform
152
157
requires :
153
158
- hold
159
+ - release
154
160
filters :
155
161
branches :
156
162
only : master
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ description: >-
7
7
your user's device including all console logs, server-side network requests
8
8
and bug reproduction steps compiling all these details in one organised dashboard
9
9
to help you debug and fix bugs faster.
10
- author :
Instabug <[email protected] >
11
10
homepage : https://github.com/Instabug/Instabug-Flutter#readme
12
11
documentation : https://github.com/Instabug/Instabug-Flutter#readme
13
12
You can’t perform that action at this time.
0 commit comments