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
Hello, I have a matrix job that builds executables for multiple platforms.
I want to upload binaries to the same pre-release and then publish the release only if all matrix jobs pass the test.
Need guidance for creating a pre-release first and then publishing the same in the next job if tests are passed.
Existing workflow is here - https://github.com/pranjal-joshi/Screeni-py/blob/c2899ab1097802ee2b7c91078a4c197c98377f79/.github/workflows/workflow-build-matrix.yml#L133
The text was updated successfully, but these errors were encountered:
You could just do it with four separate jobs in the same action, one for each of the matrix builds and the final one for the upload release action.
And just use a needs, similar to: https://github.com/NebraLtd/hm-pyhelper/blob/ced0a994551e0a360798a19fb4d7f3620e4bd454/.github/workflows/test.yml#L49
Or maybe you could use something like this as well: https://github.com/lewagon/wait-on-check-action
Sorry, something went wrong.
This should be done as of #74. Please check whether that suits your needs.
No branches or pull requests
Hello,
I have a matrix job that builds executables for multiple platforms.
I want to upload binaries to the same pre-release and then publish the release only if all matrix jobs pass the test.
Need guidance for creating a pre-release first and then publishing the same in the next job if tests are passed.
Existing workflow is here - https://github.com/pranjal-joshi/Screeni-py/blob/c2899ab1097802ee2b7c91078a4c197c98377f79/.github/workflows/workflow-build-matrix.yml#L133
The text was updated successfully, but these errors were encountered: