Skip to content

chore: bump compose_version from 1.6.1 to 1.6.5 #131

chore: bump compose_version from 1.6.1 to 1.6.5

chore: bump compose_version from 1.6.1 to 1.6.5 #131

Workflow file for this run

name: Building Release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '19'
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
- name: Build
run: |
chmod +x ./gradlew
./gradlew assembleRelease
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: NotDeveloper-${{ github.sha }}
path: app/build/outputs/apk/release/app-release.apk