Skip to content

Commit

Permalink
Fix artifact location for upload action - build-linux
Browse files Browse the repository at this point in the history
Signed-off-by: Finn Carroll <[email protected]>
  • Loading branch information
finnegancarroll committed Nov 13, 2024
1 parent 4bbc394 commit 4f015de
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ jobs:
- name: Checkout Branch
uses: actions/checkout@v3
- name: Build with Gradle
run: ./gradlew build -x integTest -x jacocoTestReport
id: step-build-test-linux
run: |
./gradlew build -x integTest -x jacocoTestReport
plugin=`basename $(ls build/distributions/*.zip)`
echo plugin $plugin
mv -v build/distributions/$plugin ./
echo "build-test-linux=$plugin" >> $GITHUB_OUTPUT
env:
_JAVA_OPTIONS: -Xmx4096M
- name: Create Artifact Path
run: |
mkdir -p asynchronous-search-artifacts
Expand Down

0 comments on commit 4f015de

Please sign in to comment.