chore: Gitea Action
All checks were successful
Create release / release (push) Successful in 1m12s

This commit is contained in:
aminecmi 2024-11-23 15:19:29 +01:00
parent b81abe384a
commit 25b716ac2f
6 changed files with 99 additions and 66 deletions

View File

@ -0,0 +1,24 @@
name: Build
on:
workflow_call:
jobs:
BuildAndTest:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: git fetch --tags -p
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Configure gradle...
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
- name: Build and test
run: ./gradlew build --stacktrace

View File

@ -1,33 +1,51 @@
name: Tag name: Create tag
on: on:
push: push:
branches: branches:
- release - release
workflow_dispatch:
jobs: jobs:
build:
uses: ./.gitea/workflows/common_build.yml
createTagAndChangelog: createTagAndChangelog:
needs: BuildAndTest
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Creating the tag - name: Config git
run: |
git config --global user.email aminecmi+giteadrone@pm.me
git config --global user.name giteadrone
- name: Creating the tag and generate changelog
run: | run: |
git fetch --tags -p git fetch --tags -p
PREV=$(git describe --tags --abbrev=0) PREV=$(git describe --tags --abbrev=0)
./build.sh --publish --from-ci ./build.sh --publish --from-ci
- name: Generating changelog
run: |
VER=$(git describe --tags --abbrev=0) VER=$(git describe --tags --abbrev=0)
CHANGELOG=$(git log $PREV..HEAD --pretty="- %s") CHANGELOG=$(git log $PREV..HEAD --pretty="- %s")
echo "**$VER**\n\n$CHANGELOG\n\n--------------------------------------------------------------------\n\n$(cat CHANGELOG.md)" > CHANGELOG.md echo "**$VER
$CHANGELOG
--------------------------------------------------------------------
$(cat CHANGELOG.md)" > CHANGELOG.md
git add CHANGELOG.md git add CHANGELOG.md
git config --global user.email "aminecmi+giteadrone@pm.me"
git config --global user.name "Gitea actions runner"
git commit -m "Changelog for $VER" git commit -m "Changelog for $VER"
git push --tags - name: Push changes
uses: appleboy/git-push-action@v1.0.0
with:
author_name: giteadrone
author_email: aminecmi+giteadrone@pm.me
remote: ${{ secrets.REMOTE_URL }}
followtags: true
ssh_key: ${{ secrets.PRIVATE_KEY }}
tags: true
branch: release
- name: copy file via ssh password - name: copy file via ssh password
uses: appleboy/scp-action@v0.1.7 uses: appleboy/scp-action@v0.1.7
with: with:

View File

@ -1,4 +1,4 @@
name: Push/PR Steps name: Check PR code
on: on:
pull_request: pull_request:
branches: branches:
@ -21,4 +21,6 @@ jobs:
- name: Linting... - name: Linting...
run: ktlint 'shared/**/*.kt' 'androidApp/**/*.kt' '!shared/build' || true run: ktlint 'shared/**/*.kt' 'androidApp/**/*.kt' '!shared/build' || true
- name: Detecting... - name: Detecting...
run: ./detekt-cli-1.23.1/bin/detekt-cli --all-rules --excludes '**/shared/build/**/*.kt' || true run: ./detekt-cli-1.23.1/bin/detekt-cli --all-rules --excludes '**/shared/build/**/*.kt' || true
build:
uses: ./.gitea/workflows/common_build.yml

View File

@ -1,30 +1,9 @@
name: Push/PR Steps name: Check master code
on: on:
pull_request:
branches:
- master
push: push:
branches: branches:
- master - master
- release
jobs: jobs:
BuildAndTest: build:
runs-on: ubuntu-latest uses: ./.gitea/workflows/common_build.yml
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: git fetch --tags -p
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Configure gradle...
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
- name: Build and test
run: ./gradlew build --stacktrace

View File

@ -1,11 +1,12 @@
name: Tag name: Create release
on: on:
push: push:
tags: branches:
- 'v*' - tagg
jobs: jobs:
build: release:
runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -21,29 +22,38 @@ jobs:
uses: android-actions/setup-android@v3 uses: android-actions/setup-android@v3
- name: Configure gradle... - name: Configure gradle...
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=false\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=false\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
- name: Generate APK - name: test
run: ./gradlew :androidApp:assembleGithubConfigRelease run: |
- name: Get Key sdkmanager "build-tools;31.0.0"
run: wget ${{ secrets.KEY_URL }} ls -la $ANDROID_HOME
- name: Zippalign ls -la $ANDROID_HOME/cmdline-tools
run: $ANDROID_HOME/build-tools/31.0.0/zipalign -f -v 4 androidApp/build/outputs/apk/githubConfig/release/androidApp-githubConfig-release-unsigned.apk androidApp/build/outputs/apk/githubConfig/release/android-prod-released-ziped.apk ls -la $ANDROID_HOME/platform-tools
- name: Sigh ls -la $ANDROID_HOME/build-tools
run: $ANDROID_HOME/build-tools/31.0.0/apksigner sign -v --out signed.apk --ks ./key --ks-key-alias ${{ secrets.KEY_ALIAS }} --ks-pass pass:${{ secrets.KEYSTORE_PASSWORD }} --v1-signing-enabled true --v2-signing-enabled true androidApp/build/outputs/apk/githubConfig/release/android-prod-released-ziped.apk # - name: Generate APK
- name: Verify # run: ./gradlew :androidApp:assembleGithubConfigRelease
run: $ANDROID_HOME/build-tools/31.0.0/apksigner verify signed.apk # - name: Get Key
- name: Release # run: wget ${{ secrets.KEY_URL }}
uses: https://gitea.com/actions/release-action@main # - name: Zippalign
with: # run: |
files: signed.apk # ls $ANDROID_HOME/build-tools
api_key: ${{ secrets.API_KEY }} # $ANDROID_HOME/build-tools/31.0.0/zipalign -f -v 4 androidApp/build/outputs/apk/githubConfig/release/androidApp-githubConfig-release-unsigned.apk androidApp/build/outputs/apk/githubConfig/release/android-prod-released-ziped.apk
- name: Send mail # - name: Sigh
uses: https://github.com/dawidd6/action-send-mail@v4 # run: $ANDROID_HOME/build-tools/31.0.0/apksigner sign -v --out signed.apk --ks ./key --ks-key-alias ${{ secrets.KEY_ALIAS }} --ks-pass pass:${{ secrets.KEYSTORE_PASSWORD }} --v1-signing-enabled true --v2-signing-enabled true androidApp/build/outputs/apk/githubConfig/release/android-prod-released-ziped.apk
with: # - name: Verify
connection_url: ${{ secrets.MAIL_CONNECTION }} # run: $ANDROID_HOME/build-tools/31.0.0/apksigner verify signed.apk
to: ${{ secrets.MAIL_TO }} # - name: Release
from: ${{ secrets.MAIL_FROM }} # uses: https://gitea.com/actions/release-action@main
subject: Mapping file # with:
priority: high # files: signed.apk
convert_markdown: true # api_key: ${{ secrets.API_KEY }}
body: Nouveu fichier de mapping # - name: Send mail
attachments: androidApp/build/outputs/mapping/githubConfigRelease/mapping.txt # uses: https://github.com/dawidd6/action-send-mail@v4
# with:
# connection_url: ${{ secrets.MAIL_CONNECTION }}
# to: ${{ secrets.MAIL_TO }}
# from: ${{ secrets.MAIL_FROM }}
# subject: Mapping file
# priority: high
# convert_markdown: true
# body: Nouveau fichier de mapping
# attachments: androidApp/build/outputs/mapping/githubConfigRelease/mapping.txt

View File

@ -1,4 +1,4 @@
# ReaderForSelfoss-multiplatform [![Build Status](https://build.amine-bouabdallaoui.fr/api/badges/Louvorg/ReaderForSelfoss-multiplatform/status.svg)](https://build.amine-bouabdallaoui.fr/Louvorg/ReaderForSelfoss-multiplatform) # ReaderForSelfoss-multiplatform [![Build Status](https://gitea.amine-bouabdallaoui.fr/Louvorg/ReaderForSelfoss-multiplatform/actions/workflows/on_push.yml/badge.svg)](https://gitea.amine-bouabdallaoui.fr/Louvorg/ReaderForSelfoss-multiplatform/actions?workflow=on_push.yml&actor=0&status=0)
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/readerforselfoss/localized.svg)](https://crowdin.com/project/readerforselfoss) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/readerforselfoss/localized.svg)](https://crowdin.com/project/readerforselfoss)