From 2cf10d93fa4e728db243bccb109b52bf20e7a4c7 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Sat, 26 Aug 2023 11:41:28 +0300 Subject: [PATCH] iufdghoieqr --- .github/workflows/tagged-release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 42cbeb4..2d5c087 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -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"