Skip to content

Commit

Permalink
Add my own build workflow because theirs is too bloated
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed Jun 20, 2024
1 parent 7e9e687 commit e46b47c
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 396 deletions.
5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

104 changes: 0 additions & 104 deletions .github/ISSUE_TEMPLATE/report_issue.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/request_feature.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/mergify.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/pull_request_template.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/renovate.json5

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Java Ci

on:
push:
branches:
- '**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
submodules: true
- name: Set up JDK 18
uses: actions/setup-java@main
with:
java-version: 22
distribution: temurin
- name: Assemble APK
run: ./gradlew --no-daemon assembleDebug
41 changes: 0 additions & 41 deletions .github/workflows/build_pull_request.yml

This file was deleted.

113 changes: 0 additions & 113 deletions .github/workflows/build_push.yml

This file was deleted.

Loading

0 comments on commit e46b47c

Please sign in to comment.