Bump androidx.webkit:webkit from 1.12.0 to 1.12.1 #377
Workflow file for this run
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: Build and Test | |
on: | |
pull_request: | |
branches: | |
- dev | |
workflow_dispatch: | |
branches: | |
- dev | |
push: | |
branches: | |
- dev | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
id-token: write # to enable use of OIDC | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Prepare | |
run: | | |
sudo apt-get -y install dos2unix | |
- name: JDK Setup | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: "Execute Gradle assemble" | |
run: | | |
dos2unix ./gradlew | |
./gradlew assemble | |
- name: arm64 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Arm64 | |
path: ${{ github.workspace }}/app/build/outputs/apk/debug/*arm64-v8a.apk | |
- name: armeabi-v7a | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Armeabi-v7a | |
path: ${{ github.workspace }}/app/build/outputs/apk/debug/*armeabi-v7a.apk | |
- name: x86 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: X86 | |
path: ${{ github.workspace }}/app/build/outputs/apk/debug/*x86.apk | |
- name: x86_64 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: X86_64 | |
path: ${{ github.workspace }}/app/build/outputs/apk/debug/*x86_64.apk | |
- name: universal | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Universal | |
path: ${{ github.workspace }}/app/build/outputs/apk/debug/*universal.apk |