Merge pull request #1900 from Steveice10/release-workflow-patch
Make the GitHub Actions release workflow more lenient.
This commit is contained in:
commit
d3b64c8c53
10
.github/workflows/CI.yml
vendored
10
.github/workflows/CI.yml
vendored
@ -125,5 +125,15 @@ jobs:
|
|||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
|
# Allow updating existing releases if the workflow is triggered by release creation or re-run.
|
||||||
|
allowUpdates: true
|
||||||
|
# When the release is updated, delete the existing artifacts for replacement.
|
||||||
|
removeArtifacts: true
|
||||||
|
# If a release is being replaced, omit updating the name and body.
|
||||||
|
# Allows for creating a release and filling these in before the workflow runs.
|
||||||
|
# Then, the workflow will populate the release with the artifacts.
|
||||||
|
omitNameDuringUpdate: true
|
||||||
|
omitBodyDuringUpdate: true
|
||||||
|
# Upload all MoltenVK CI artifacts as release assets.
|
||||||
artifacts: "MoltenVK*/*"
|
artifacts: "MoltenVK*/*"
|
||||||
artifactErrorsFailBuild: true
|
artifactErrorsFailBuild: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user