Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBernard03 committed Apr 26, 2024
2 parents 0bb41cf + 9800f60 commit f5e6b59
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,21 @@ jobs:
run: xcodebuild -project AndroidTools/AndroidTools.xcodeproj -scheme AndroidTools -sdk macosx -configuration Release archive -archivePath ${{github.workspace}}/build/AndroidTools.xcarchive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO

- name: Export the archive
run: xcodebuild -exportArchive -archivePath ${{github.workspace}}/build/AndroidTools.xcarchive -exportPath ${{github.workspace}}/build -exportOptionsPlist AndroidTools/ExportOptions.plist CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
run: |
xcodebuild -exportArchive \
-archivePath ${{github.workspace}}/build/AndroidTools.xcarchive \
-exportPath ${{github.workspace}}/build \
-exportOptionsPlist AndroidTools/ExportOptions.plist \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- name: List files
run: ls -l ${{github.workspace}}/build/

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: YourApp
path: ${{github.workspace}}/build/*
name: AndroidTools
path: |
${{github.workspace}}/build/*.pkg
${{github.workspace}}/build/*.app
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
</p>

---

<p align="center">
<img alt="API" src="https://github.com/ThomasBernard03/AndroidTools/actions/workflows/main.yml/badge.svg?branch=main"/>
<img alt="API" src="https://img.shields.io/badge/language-swift-orange"/>
<img alt="API" src="https://img.shields.io/badge/UI%20framework-SwiftUI-orange"/>
<img alt="API" src="https://img.shields.io/badge/plateform-Macos-blue"/>
</p>


Android tools makes the communication between Macos and Android devices easier. You can view devices informations, install applications and browse files...

## ⚡️ Installation
Expand Down

0 comments on commit f5e6b59

Please sign in to comment.