iufdghoieqr

This commit is contained in:
TopchetoEU 2023-08-26 11:41:28 +03:00
parent 136dda805a
commit 2cf10d93fa
No known key found for this signature in database
GPG Key ID: 24E57B2E9C61AD19

View File

@ -16,13 +16,14 @@ jobs:
with:
owner: 'TopchetoEU'
repository: 'java-jscript'
- name: "Build & test"
- name: "Build"
run: |
ls &&
mkdir -p dst/classes &&
rsync -av --exclude='*.java' src/ dst/classes &&
tsc --outDir dst/classes/me/topchetoeu/jscript/js --declarationDir dst/classes/me/topchetoeu/jscript/dts &&
find src -name "*.java" | xargs javac -d dst/classes &&
cd java-jscript;
ls;
mkdir -p dst/classes;
rsync -av --exclude='*.java' src/ dst/classes;
tsc --outDir dst/classes/me/topchetoeu/jscript/js --declarationDir dst/classes/me/topchetoeu/jscript/dts;
find src -name "*.java" | xargs javac -d dst/classes;
jar -c -f dst/jscript.jar -e me.topchetoeu.jscript.Main -C dst/classes .
- uses: "marvinpinto/action-automatic-releases@latest"