From 8a2ba343f0994769f997dcdcf98674d853685df9 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 6 Feb 2023 17:39:59 -0700 Subject: [PATCH] ci: fix syntax errors --- .github/workflows/docker.yml | 2 +- .github/workflows/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 96c7fd2..cb05fbe 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -73,7 +73,7 @@ jobs: contains(steps.setVersion.outputs.version, 'beta') uses: ncipollo/release-action@v1 with: - artifacts: **\*.clz + artifacts: '**\*.clz' generateReleaseNotes: true prerelease: ${{contains('debug', env.BUILD_TYPE)}} tag: ${{ steps.setVersion.outputs.version }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e072d38..6afe209 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,7 @@ jobs: id: create_release uses: ncipollo/release-action@v1 with: - artifacts: **\*.clz + artifacts: '**\*.clz' generateReleaseNotes: false prerelease: false tag: ${{ github.event.release.tag_name }}