We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad51f9a commit 52a5dd7Copy full SHA for 52a5dd7
.github/workflows/build.yml
@@ -72,6 +72,22 @@ jobs:
72
name: build-artifacts
73
path: versions/*/build/libs/
74
75
+ - name: Collect mod jars
76
+ run: |
77
+ shopt -s extglob
78
+ mkdir mod-jars
79
+ for jar in versions/*/build/libs/!(*-@(dev|sources|shadow)).jar; do
80
+ cp -p "$jar" mod-jars/
81
+ done
82
+ ls -l mod-jars
83
+
84
+ # This is the artifact recommended for users to download
85
+ - name: Upload mod jars
86
+ uses: actions/upload-artifact@v4
87
+ with:
88
+ name: mod-jars
89
+ path: mod-jars/*.jar
90
91
# # [FEATURE] FALLENS_MAVEN
92
# - name: Publish with gradle
93
# if: inputs.release || github.ref == 'refs/heads/dev'
0 commit comments