Skip to content

Commit c8c9d22

Browse files
committed
Flatten repo: move Fabric project out of source/ to the repo root
The Gradle project (build.gradle, gradlew, src/) was nested under a source/ subfolder, so a clone got source/build.gradle instead of build.gradle at the top level. Move everything up a level and update the CI workflow paths to match. The old source/ folder on disk still holds local build caches (gitignored) and can be deleted or reused.
1 parent 2daa503 commit c8c9d22

30 files changed

Lines changed: 1 addition & 5 deletions

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13-
defaults:
14-
run:
15-
working-directory: source
1613
steps:
1714
- name: Checkout repository
1815
uses: actions/checkout@v4
@@ -36,4 +33,4 @@ jobs:
3633
uses: actions/upload-artifact@v4
3734
with:
3835
name: NoteBot
39-
path: source/build/libs/*.jar
36+
path: build/libs/*.jar

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Gradle
22
.gradle/
33
build/
4-
!src/**/build/
54

65
# Eclipse
76
bin/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)