From b2e7bc1211f8fb1cda7f5a0eb31cab79ab40a767 Mon Sep 17 00:00:00 2001 From: TTPFORCE Date: Mon, 2 Feb 2026 05:06:22 +0400 Subject: [PATCH 1/2] Create docker-image.yml --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 000000000..3f53646d1 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) From 3bbd6a470688c8f4a0efaf02d571a3eac61f8ec8 Mon Sep 17 00:00:00 2001 From: TTPFORCE Date: Mon, 2 Feb 2026 05:58:21 +0400 Subject: [PATCH 2/2] Create main.yml --- github/workflows/main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 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 000000000..62301aca7 --- /dev/null +++ b/github/workflows/main.yml @@ -0,0 +1,36 @@ +name: Upgraded Protocol Activation & Release + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up Java + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '17' + + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: '3.10.0' + + - name: Install Dependencies + run: flutter pub get + + - name: Build APK + run: flutter build apk --release + + - name: Upload APK Artifact + uses: actions/upload-artifact@v4 + with: + name: release-apk + path: build/app/outputs/flutter-apk/app-release.apk +