From 044a2e0f61108f7e995d0377f1c5dc094b54dd59 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 30 Sep 2025 15:56:08 +0100 Subject: [PATCH] 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. --- .github/actions/upload-artifacts/action.yml | 2 +- docs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/upload-artifacts/action.yml b/.github/actions/upload-artifacts/action.yml index 4a733c11..04b131e0 100644 --- a/.github/actions/upload-artifacts/action.yml +++ b/.github/actions/upload-artifacts/action.yml @@ -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 }} \ No newline at end of file diff --git a/docs b/docs index 88250363..e73dfdd5 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 88250363a6f5c374b88b75f03fccb7e5e6e0be88 +Subproject commit e73dfdd55a5d4d4a128dd2c992b9484ee908bc46