We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 802472f commit 49d37a5Copy full SHA for 49d37a5
.github/workflows/manual-publish.yml
@@ -46,7 +46,7 @@ jobs:
46
- uses: ./.github/actions/publish
47
id: publish
48
with:
49
- dry_run: ${{ !inputs.dry_run }}
+ dry_run: ${{ inputs.dry_run }}
50
51
- uses: ./.github/actions/publish-docs
52
if: ${{ !inputs.dry_run }}
@@ -55,7 +55,6 @@ jobs:
55
56
release-provenance:
57
needs: [ 'publish' ]
58
- if: ${{ needs.release-package.outputs.release-created == 'true' }}
59
60
permissions:
61
actions: read
@@ -65,4 +64,4 @@ jobs:
65
64
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected]
66
67
base64-subjects: "${{ needs.publish.outputs.gem-hash }}"
68
- upload-assets: true
+ upload-assets: ${{ !inputs.dry_run }}
0 commit comments