diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46acda17b..52dfe3798 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,33 +26,23 @@ on: required: true default: false type: boolean + neo4j: + description: "Neo4j v4 version to use" + type: string + required: true + default: 'target/checkout/cli/neo4jv4/target/*-distribution.zip' jobs: build: - uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/release.yml@main + uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/release.yml@neo4j-release with: branch: ${{ github.event.inputs.branch }} releaseVersion: ${{ github.event.inputs.releaseVersion }} developmentVersion: ${{ github.event.inputs.developmentVersion }} dryRun: ${{ github.event.inputs.dryRun }} + neo4j: ${{ github.event.inputs.neo4j }} secrets: ossrh_username: ${{ secrets.OSSRH_USERNAME }} ossrh_password: ${{ secrets.OSSRH_PASSWORD }} ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }} ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }} sonar_token: ${{ secrets.SONAR_TOKEN }} - - attach-artifacts: - runs-on: ubuntu-latest - needs: build - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Upload Release Asset Neo4j - uses: actions/upload-artifact@v3 - with: - name: neo4j.zip - path: | - cli/neo4jv4/*-distribution.zip - cli/neo4jv5/*-distribution.zip - content_type: application/zip