v3.8.1 #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
- 'fastlane/**' | |
- 'assets/**' | |
- '.github/**/*.md' | |
- '.github/FUNDING.yml' | |
- '.github/ISSUE_TEMPLATE/**' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
- 'fastlane/**' | |
- 'assets/**' | |
- '.github/**/*.md' | |
- '.github/FUNDING.yml' | |
- '.github/ISSUE_TEMPLATE/**' | |
jobs: | |
build-client: | |
runs-on: ubuntu-latest | |
outputs: | |
files: ${{ steps.step-output.outputs.files }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Create and checkout branch | |
# push events already checked out the branch | |
if: github.event_name == 'pull_request' | |
env: | |
BRANCH: ${{ github.head_ref }} | |
run: git checkout -B "$BRANCH" | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: "temurin" | |
cache: 'gradle' | |
- name: Build debug APK | |
run: | | |
cd PipePipeClient | |
./gradlew assembleDebug lintDebug --stacktrace -DskipFormatKtlint | |
- name: Upload APKs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: all-apks-in-one(intermediates) | |
retention-days: 1 | |
path: PipePipeClient/app/build/outputs/apk/debug/*.apk | |
- name: Output filenames | |
id: step-output | |
run: | | |
files=$(ls PipePipeClient/app/build/outputs/apk/debug) | |
json_array="[" | |
first_file=true | |
for file in $files; do | |
if [ "$first_file" = false ]; then | |
json_array+=", \"$file\"" | |
else | |
json_array+="\"$file\"" | |
first_file=false | |
fi | |
done | |
json_array+="]" | |
echo "files=$json_array" | |
echo "files=$json_array" >> "$GITHUB_OUTPUT" | |
upload-apk: | |
runs-on: ubuntu-latest | |
needs: build-client | |
strategy: | |
matrix: | |
file: ${{ fromJson(needs.build-client.outputs.files) }} | |
steps: | |
- name: Download APKs | |
uses: actions/download-artifact@v3 | |
with: | |
name: all-apks-in-one(intermediates) | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.file }} | |
path: ${{ matrix.file }} |