From 9f0d1de386999c738e00b1f1ff1b45d321e2e84b Mon Sep 17 00:00:00 2001 From: B3S23 Date: Thu, 27 Feb 2025 18:31:20 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a4c74ca..8d0a78b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # bitcoin-summarizer -Open Source app that uses alternative.me API to check Bitcoin info \ No newline at end of file +Open Source app that uses alternative.me API to check Bitcoin info + +:3 :3 \ No newline at end of file From b42487feba77c0096bf2aead9024449c7b50baee Mon Sep 17 00:00:00 2001 From: B3S23 Date: Thu, 27 Feb 2025 18:36:34 +0300 Subject: [PATCH 2/3] revert 9f0d1de386999c738e00b1f1ff1b45d321e2e84b revert Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d0a78b..a4c74ca 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ # bitcoin-summarizer -Open Source app that uses alternative.me API to check Bitcoin info - -:3 :3 \ No newline at end of file +Open Source app that uses alternative.me API to check Bitcoin info \ No newline at end of file From be208912b767656cc6517f4cd5ec30f08a4c263d Mon Sep 17 00:00:00 2001 From: andy Date: Thu, 27 Feb 2025 21:44:48 +0500 Subject: [PATCH 3/3] CI/CD revamp --- .gitea/workflows/build.yaml | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e7bf289..2b26c91 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,22 +1,31 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions +name: Gitea Android Builder +run-name: ${{ gitea.actor }} is building an Android application on: push: branches: - main jobs: - Explore-Gitea-Actions: + Build: runs-on: ubuntu-22.04 steps: - - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code + - name: Greetings + run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." && echo "This job is now running on a ${{ runner.os }}" && echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: set up JDK 23 uses: actions/checkout@v4 - - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "This job's status is ${{ job.status }}." + with: + java-version: '23' + distribution: 'temurin' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + uses: gradle/gradle-build-action@v4 + with: + arguments: assembleRelease + - name: Upload JAR Artifact + uses: actions/upload-artifact@v4 + with: + name: android-app-apk + path: app/build/outputs/apk/release/*.apk + - name: Status + run: echo "This job's status is ${{ job.status }}."