Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Android CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.3.1
with:
# Artifact name
name: Smupe-release # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: ./app/build/outputs/apk/foss/release/app-foss-release.apk
# The desired behavior if no files are found using the provided path.