From 1154d9bf144a36b81897f8da81173d3c820deccd Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:26:35 +0530 Subject: [PATCH 1/6] Create main.yml --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e3fc5bc --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,30 @@ +name: Build VishalX Tunnel + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup JDK + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 17 + + - name: Grant execute permission for Gradlew + run: chmod +x ./gradlew + + - name: Build Release APK + run: ./gradlew assembleRelease + + - name: Upload APK + uses: actions/upload-artifact@v3 + with: + name: VishalX-Tunnel + path: app/build/outputs/apk/release/app-release.apk From 714a513fed7125044e7030ebdfe879d303647f08 Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:27:18 +0530 Subject: [PATCH 2/6] Delete .github/workflows directory --- .github/workflows/main.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index e3fc5bc..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build VishalX Tunnel - -on: - push: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup JDK - uses: actions/setup-java@v3 - with: - distribution: temurin - java-version: 17 - - - name: Grant execute permission for Gradlew - run: chmod +x ./gradlew - - - name: Build Release APK - run: ./gradlew assembleRelease - - - name: Upload APK - uses: actions/upload-artifact@v3 - with: - name: VishalX-Tunnel - path: app/build/outputs/apk/release/app-release.apk From 84e989425d2305d5600098aa4f28ac3891be130f Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:27:59 +0530 Subject: [PATCH 3/6] Create build.yml --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build.yml 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 From c97fdaf7cd8dd04353e2fa63e349eabc98872df9 Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:31:07 +0530 Subject: [PATCH 4/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) 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 + - . From b022c78cce1743b4d4b8159c620c8a9e8b1234b5 Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:36:00 +0530 Subject: [PATCH 5/6] Update build.yml From 177298564552f52865a9bd0c7bbda2b2436f4580 Mon Sep 17 00:00:00 2001 From: chatg0115-afk Date: Fri, 28 Nov 2025 11:36:17 +0530 Subject: [PATCH 6/6] Update build.yml