Skip to content

Commit 3b0facb

Browse files
Update publish.yml
1 parent 854ce99 commit 3b0facb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@ jobs:
2525
with:
2626
channel: stable
2727
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
3232
- uses: actions/download-artifact@v4
3333
with:
3434
name: Android build
3535
- name: Display structure of downloaded files
36-
run: ls -R
36+
run: ls -R $GITHUB_WORKSPACE
3737
- uses: actions/download-artifact@v4
3838
with:
3939
name: ios-build
4040
- name: Display structure of downloaded files
41-
run: ls -R
41+
run: ls -R $GITHUB_WORKSPACE
4242
- name: Upload Android Build to Release
4343
uses: softprops/action-gh-release@v2
4444
with:
4545
files: |
46-
app-debug.apk
47-
ios.zip
46+
$GITHUB_WORKSPACE/app-debug.apk
47+
$GITHUB_WORKSPACE/ios.zip
4848
- name: Update Flutter Driver with Version
4949
run: |
5050
TAG_NAME=$(curl -s "https://api.github.com/repos/AppiumTestDistribution/appium-flutter-server/tags" | grep -m 1 '"name"' | sed -E 's/.*"name": "([^"]+)".*/\1/')

0 commit comments

Comments
 (0)