fix: update artifact path syntax in docker workflow for release action

This commit is contained in:
jtalborough
2025-02-27 18:12:16 -05:00
parent 1d49ea67ad
commit bacc0a4f57

View File

@@ -76,12 +76,9 @@ jobs:
# Create the release on the source repo
- name: Create Release
id: create_release
# if: contains(steps.setVersion.outputs.version,'-rc-') ||
# contains(steps.setVersion.outputs.version,'-hotfix-') ||
# contains(steps.setVersion.outputs.version, '-beta-')
uses: ncipollo/release-action@v1
with:
artifacts: 'output\**\*.*(cpz|cplz)'
artifacts: 'output/**/*.{cpz,cplz}'
generateReleaseNotes: true
prerelease: ${{contains('debug', env.BUILD_TYPE)}}
tag: ${{ steps.setVersion.outputs.version }}