From 30c490c116a60028a6193c02ca7f62d70c28b5d5 Mon Sep 17 00:00:00 2001 From: Aman Attri <89793588+amanattri09@users.noreply.github.com> Date: Fri, 24 Jan 2025 16:04:51 +0530 Subject: [PATCH] Update push.yml --- .github/workflows/push.yml | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index cb54b0e..ced74a7 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,13 +1,23 @@ - name: push - - on: - push : - branches: ["develop","master"] - workflow_dispatch: - - jobs: - build: - name : Build - runs-on: ubuntu-latest - steps: - - run : echo "The job was automatically triggered by a ${{ github.event_name }} event." \ No newline at end of file +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "This job is running on a ${{ runner.os }} server hosted by GitHub!" + - uses: actions/checkout@v3 + - run: echo "The ${{ github.repository }} repository has been cloned." + - run: echo "Setting up JDK" + - name: set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + - run: echo "The workflow is now ready to test your code." + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - run: echo "Building Debug APK." + - name: Build with Gradle + run: ./gradlew build + - run: echo "Build status report=${{ job.status }}."