File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -25,26 +25,26 @@ jobs:
25
25
with :
26
26
channel : stable
27
27
flutter-version : 3.22.2
28
- - name : Install dependencies
29
- run : flutter pub get
30
- - name : Publish
31
- run : dart pub publish --force
28
+ # - name: Install dependencies
29
+ # run: flutter pub get
30
+ # - name: Publish
31
+ # run: dart pub publish --force
32
32
- uses : actions/download-artifact@v4
33
33
with :
34
34
name : Android build
35
35
- name : Display structure of downloaded files
36
- run : ls -R
36
+ run : ls -R $GITHUB_WORKSPACE
37
37
- uses : actions/download-artifact@v4
38
38
with :
39
39
name : ios-build
40
40
- name : Display structure of downloaded files
41
- run : ls -R
41
+ run : ls -R $GITHUB_WORKSPACE
42
42
- name : Upload Android Build to Release
43
43
uses : softprops/action-gh-release@v2
44
44
with :
45
45
files : |
46
- app-debug.apk
47
- ios.zip
46
+ $GITHUB_WORKSPACE/ app-debug.apk
47
+ $GITHUB_WORKSPACE/ ios.zip
48
48
- name : Update Flutter Driver with Version
49
49
run : |
50
50
TAG_NAME=$(curl -s "https://api.github.com/repos/AppiumTestDistribution/appium-flutter-server/tags" | grep -m 1 '"name"' | sed -E 's/.*"name": "([^"]+)".*/\1/')
You can’t perform that action at this time.
0 commit comments