Skip to content

Commit

Permalink
Added continous follow up query search, on the threads page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGuyDangerous committed Oct 10, 2024
1 parent 768dbbe commit 9be9469
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: apks
path: build/app/outputs/flutter-apk/*.apk
path: |
build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk
build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
build/app/outputs/flutter-apk/app-x86_64-release.apk
retention-days: 5

- name: Create Release
if: github.ref == 'refs/heads/main'
Expand Down Expand Up @@ -142,15 +146,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/app/outputs/flutter-apk/app-x86_64-release.apk
asset_name: freelexity-v${{ steps.bump_version.outputs.new_version }}-x86_64.apk
asset_content_type: application/vnd.android.package-archive

- name: Upload Dev APKs as artifacts
if: github.ref == 'refs/heads/dev'
uses: actions/upload-artifact@v4
with:
name: dev-apks
path: build/app/outputs/flutter-apk/*.apk
retention-days: 5
asset_content_type: application/vnd.android.package-archive

- name: Final Debug
if: always()
Expand Down

0 comments on commit 9be9469

Please sign in to comment.