From f8bb78a8aecb3701bed5a640a0f46943059a4bbd Mon Sep 17 00:00:00 2001 From: Yass Almardoud Date: Fri, 19 Jul 2024 08:47:42 +0200 Subject: [PATCH] #479 Added Display structure --- .github/workflows/release.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 81f56033f..e5b7d1b5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,24 +51,27 @@ jobs: unpack-artifacts: runs-on: ubuntu-latest needs: build + if: ${{ github.event.inputs.artifacts }} != '' steps: - - name: Download Artifacts - continue-on-error: true - uses: actions/download-artifact@v4 - with: - name: artifacts - zipFilePath: . +# - name: Download Artifacts +# continue-on-error: true +# uses: actions/download-artifact@v4 +# with: +# name: artifacts +# zipFilePath: . + - name: Display structure of downloaded files + run: ls -R - name: Upload Neo4jv4 Artifacts uses: actions/upload-artifact@v4 with: name: Commandline Utility Neo4jV4 - path: ./neo4jv4/target/jqassistant-commandline-neo4jv4-${{ github.event.inputs.developmentVersion }}-distribution.zip + path: cli/neo4jv4/target/jqassistant-commandline-neo4jv4-${{ github.event.inputs.developmentVersion }}-distribution.zip if-no-files-found: warn - name: Upload Neo4jv5 Artifacts uses: actions/upload-artifact@v3 with: name: Commandline Utility Neo4jV5 - path: ./neo4jv5/target/jqassistant-commandline-neo4jv5-${{ github.event.inputs.developmentVersion }}-distribution.zip + path: cli/neo4jv5/target/jqassistant-commandline-neo4jv5-${{ github.event.inputs.developmentVersion }}-distribution.zip if-no-files-found: warn