Skip to content

Commit

Permalink
fix uploading artifacts to github
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 9, 2024
1 parent b6e421b commit f8aee97
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: deploy
name: publish

on:
workflow_dispatch:
Expand Down Expand Up @@ -39,15 +39,17 @@ jobs:
if: success() || failure()
with:
name: demo_app.apk
path: build/app/outputs/flutter-apk/demo_app.apk
path: build/app/outputs/flutter-apk/app-debug.apk
if-no-files-found: error
retention-days: 1

- name: Upload iOS artifacts
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: demo_app.app
path: build/ios/iphonesimulator/demo_app.app
path: build/ios/iphonesimulator/Runner.app
if-no-files-found: error
retention-days: 1

- name: Authenticate to Google Cloud
Expand Down

0 comments on commit f8aee97

Please sign in to comment.