Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

chore(deps): update dependency com.google.devtools.ksp to v1.9.0-1.0.12 #1256

chore(deps): update dependency com.google.devtools.ksp to v1.9.0-1.0.12

chore(deps): update dependency com.google.devtools.ksp to v1.9.0-1.0.12 #1256

Workflow file for this run

name: Diffuse
on:
pull_request:
branches:
- master
- main
- trunk
- develop
- maine
- mane
jobs:
run-diffuse:
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 20
- uses: gradle/gradle-build-action@v2
- run: ./gradlew assembleRelease
env:
WYKOP_KEYSTORE_KEY_PASSWORD: ${{ secrets.WYKOP_KEYSTORE_KEY_PASSWORD }}
WYKOP_KEYSTORE_KEY_NAME: ${{ secrets.WYKOP_KEYSTORE_KEY_NAME }}
WYKOP_KEYSTORE_PASSWORD: ${{ secrets.WYKOP_KEYSTORE_PASSWORD }}
WYKOP_APPKEY: ${{ secrets.WYKOP_APPKEY }}
WYKOP_SECRETKEY: ${{ secrets.WYKOP_SECRETKEY }}
WYKOP_GOOGLEKEY: ${{ secrets.WYKOP_GOOGLEKEY }}
WYKOP_YOUTUBEKEY: ${{ secrets.WYKOP_YOUTUBEKEY }}
- uses: actions/cache@v3
name: Download base
with:
path: |
diffuse-source-file-release
diffuse-mapping-file-release
key: diffuse-${{ github.event.pull_request.base.sha }}
restore-keys: diffuse-${{ github.event.pull_request.base.sha }}
- id: diffuse
uses: usefulness/diffuse-action@master
with:
old-file-path: diffuse-source-file-release
old-mapping-path: diffuse-mapping-file-release
new-file-path: app/build/outputs/apk/release/app-release.apk
new-mapping-path: app/build/outputs/mapping/release/mapping.txt
- uses: peter-evans/find-comment@v2
id: find_comment
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Diffuse output
- uses: peter-evans/create-or-update-comment@v3
if: ${{ steps.diffuse.outputs.diff-gh-comment != null || steps.find_comment.outputs.comment-id != null }}
with:
body: |
Diffuse output:
${{ steps.diffuse.outputs.diff-gh-comment }}
File path: `${{ steps.diffuse.outputs.diff-file }}`
edit-mode: replace
comment-id: ${{ steps.find_comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v3
with:
name: diffuse-output
path: ${{ steps.diffuse.outputs.diff-file }}