Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
saikrishna321 authored Jun 28, 2024
1 parent 854ce99 commit 3b0facb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/')
Expand Down

0 comments on commit 3b0facb

Please sign in to comment.