Merge pull request #3 from ProjectZeroDays/add-c2-dashboard-gui #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Exploits | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '11' | |
| - name: Build Android exploit | |
| run: | | |
| ./scripts/android_deploy.sh | |
| - name: Build iOS exploit | |
| run: | | |
| ./scripts/ios_deploy.sh | |
| - name: Build Windows exploit | |
| run: | | |
| ./scripts/windows_deploy.bat | |
| - name: Build Linux exploit | |
| run: | | |
| ./scripts/linux_deploy.sh | |
| - name: Build macOS exploit | |
| run: | | |
| ./scripts/macos_deploy.sh |