From 97987d0ce61604719e29556934399af85aa027c5 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 29 Sep 2021 16:39:44 +0100 Subject: [PATCH] ci: :building_construction: --- .github/workflows/build.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c584bdd62..215201182 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -197,10 +197,6 @@ jobs: with: path: artifacts - - name: Display structure of downloaded files - run: ls -R - working-directory: artifacts - # - name: Publish to GitHub # uses: softprops/action-gh-release@v1 # # if: startsWith(github.ref, 'refs/tags/') @@ -210,12 +206,19 @@ jobs: # name: ${{ steps.changelog.outputs.tag }} # tag_name: ${{ steps.changelog.outputs.tag }} # files: | - # artifacts/linux-arm.tar.gz - # artifacts/linux-arm64.tar.gz - # artifacts/linux-x64.tar.gz - # artifacts/osx-x64.tar.gz - # artifacts/win10-x86.zip - # artifacts/win10-x64.zip + # artifacts/**/*.tar.gz + # artifacts/**/*.zip + + - name: Publish to GitHub + uses: softprops/action-gh-release@v1 + # if: startsWith(github.ref, 'refs/tags/') + with: + body: 'Test' + draft: 'true' + name: 'Test' + files: | + artifacts/**/*.tar.gz + artifacts/**/*.zip