diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index be721da..1097a2b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,26 +25,26 @@ jobs: with: channel: stable flutter-version: 3.22.2 - - name: Install dependencies - run: flutter pub get - - name: Publish - run: dart pub publish --force + # - name: Install dependencies + # run: flutter pub get + # - name: Publish + # run: dart pub publish --force - uses: actions/download-artifact@v4 with: name: Android build - name: Display structure of downloaded files - run: ls -R + run: ls -R $GITHUB_WORKSPACE - uses: actions/download-artifact@v4 with: name: ios-build - name: Display structure of downloaded files - run: ls -R + run: ls -R $GITHUB_WORKSPACE - name: Upload Android Build to Release uses: softprops/action-gh-release@v2 with: files: | - app-debug.apk - ios.zip + $GITHUB_WORKSPACE/app-debug.apk + $GITHUB_WORKSPACE/ios.zip - name: Update Flutter Driver with Version run: | TAG_NAME=$(curl -s "https://api.github.com/repos/AppiumTestDistribution/appium-flutter-server/tags" | grep -m 1 '"name"' | sed -E 's/.*"name": "([^"]+)".*/\1/')