From 4cfb204f26fbfb01a884081c49d96acde1554b28 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Sun, 11 Jun 2023 07:25:09 -0400 Subject: [PATCH] Use commas to separate artefacts --- .github/workflows/release.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29625ab..dca3e50 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -167,14 +167,9 @@ jobs: filename: 'macos.${{ needs.version.outputs.tag }}.tar.gz' directory: 'install' path: 'macos' - - run: | - pwd - ls - ls .. - ls install - #- name: Create Release - # uses: ncipollo/release-action@v1 - # with: - # tag: ${{ needs.version.outputs.tag }} - # artifacts: "../release.${{ needs.version.outputs.tag }}.zip ../release.${{ needs.version.outputs.tag }}.tar.gz install/*.${{ needs.version.outputs.tag }}.zip install/*.${{ needs.version.outputs.tag }}.tar.gz" - # generateReleaseNotes: true + - name: Create Release + uses: ncipollo/release-action@v1 + with: + tag: ${{ needs.version.outputs.tag }} + artifacts: "../release.${{ needs.version.outputs.tag }}.zip,../release.${{ needs.version.outputs.tag }}.tar.gz,install/*.${{ needs.version.outputs.tag }}.zip,install/*.${{ needs.version.outputs.tag }}.tar.gz" + generateReleaseNotes: true