forked from lthn/blockchain
Fix prerelease expression in upload-artifacts action
Corrects the syntax for the 'prerelease' field in the upload-artifacts GitHub Action to use proper expression evaluation. Also updates the docs submodule to the latest commit.
This commit is contained in:
parent
737cbb7a8a
commit
044a2e0f61
2 changed files with 2 additions and 2 deletions
2
.github/actions/upload-artifacts/action.yml
vendored
2
.github/actions/upload-artifacts/action.yml
vendored
|
|
@ -71,6 +71,6 @@ runs:
|
|||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
tag_name: ${{ steps.asset.outputs.version }}
|
||||
prerelease: contains(inputs.chain-network, 'testnet')
|
||||
prerelease: ${{ contains(inputs.chain-network, 'testnet') }}
|
||||
files: ${{ inputs.asset-directory }}/lethean-*
|
||||
target_commitish: ${{ github.sha }}
|
||||
2
docs
2
docs
|
|
@ -1 +1 @@
|
|||
Subproject commit 88250363a6f5c374b88b75f03fccb7e5e6e0be88
|
||||
Subproject commit e73dfdd55a5d4d4a128dd2c992b9484ee908bc46
|
||||
Loading…
Add table
Reference in a new issue