We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The previous script used a old version of the github release script. See this link for the new CLI.
Old code
- name: Create Github release run: | set -x assets=() for asset in ${JCV_DB_CORE_ASSETS_FOLDER}; do assets+=("-a" "$asset") done for asset in ${JCV_DB_ASSERTJ_DB_ASSETS_FOLDER}; do assets+=("-a" "$asset") done for asset in ${JCV_DB_CASSANDRA_ASSETS_FOLDER}; do assets+=("-a" "$asset") done for asset in ${JCV_DB_JDBC_ASSETS_FOLDER}; do assets+=("-a" "$asset") done for asset in ${JCV_DB_MONGO_ASSETS_FOLDER}; do assets+=("-a" "$asset") done hub release create --draft "${assets[@]}" -m "Release of ${{ github.ref }}" "${{ github.ref }}" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} JCV_DB_CORE_ASSETS_FOLDER: "${{ github.workspace }}/jcv-db-core/build/libs/*" JCV_DB_ASSERTJ_DB_ASSETS_FOLDER: "${{ github.workspace }}/jcv-db-assertj-db/build/libs/*" JCV_DB_CASSANDRA_ASSETS_FOLDER: "${{ github.workspace }}/jcv-db-cassandra/build/libs/*" JCV_DB_JDBC_ASSETS_FOLDER: "${{ github.workspace }}/jcv-db-jdbc/build/libs/*" JCV_DB_MONGO_ASSETS_FOLDER: "${{ github.workspace }}/jcv-db-mongo/build/libs/*"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The previous script used a old version of the github release script. See this link for the new CLI.
Old code
The text was updated successfully, but these errors were encountered: