diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c531423 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Build VishalX Tunnel + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + + - name: Grant Gradle Permission + run: chmod +x ./gradlew + + - name: Build Release APK + run: ./gradlew assembleRelease + + - name: Upload APK Artifact + uses: actions/upload-artifact@v3 + with: + name: VishalX-Tunnel + path: app/build/outputs/apk/release/app-release.apk diff --git a/README.md b/README.md index 9de136d..05c718f 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,5 @@ This project uses binaries from other projects and those are under their respect - Sshpass - Tun2socks - Corkscrew + - .