From 2647a099366306f4966c11c49a2e32f095201e26 Mon Sep 17 00:00:00 2001 From: Gert Goet Date: Sat, 8 Apr 2023 15:14:46 +0200 Subject: [PATCH] Correct syntax --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index baeb9a1..a31fe2d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,9 +84,9 @@ jobs: name: stable target_commitish: 55863dbc940e0741b9d9b3a1b11fdbadd08e8bb5 # first commit tag_name: stable - files: - - deps-try-bb.jar - - deps-try.zip + files: | + deps-try-bb.jar + deps-try.zip - name: Release unstable if: ${{ always() }} uses: softprops/action-gh-release@v1 @@ -99,9 +99,9 @@ jobs: name: unstable target_commitish: 55863dbc940e0741b9d9b3a1b11fdbadd08e8bb5 # first commit tag_name: unstable - files: - - deps-try-bb.jar - - deps-try.zip + files: | + deps-try-bb.jar + deps-try.zip - name: Tagged release if: "${{ needs.Config.outputs.tagged-release }}" uses: softprops/action-gh-release@v1 @@ -114,6 +114,6 @@ jobs: name: ${{ needs.Config.outputs.release-name }} target_commitish: ${{ github.sha }} tag_name: ${{ needs.Config.outputs.release-name }} - files: - - deps-try-bb.jar - - deps-try.zip + files: | + deps-try-bb.jar + deps-try.zip