From e6573beac70c40f97b4e242d9f94091483016bb7 Mon Sep 17 00:00:00 2001 From: Chris Hubbard Date: Tue, 24 Oct 2023 15:13:14 -0400 Subject: [PATCH] Try a different release action (#408) --- .github/workflows/release.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a11bf55a..2ef8f9980 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,15 @@ name: Release on: push: tags: - - '*' + - 'v*' + workflow_dispatch: + inputs: + logLevel: + description: 'Log Level' + required: true + default: 'warning' + tags: + description: 'Tags' jobs: create_release: @@ -14,14 +22,9 @@ jobs: - name: Create Release id: create_release - uses: phuonghuynh/action-ghrelease@v1.1.0 + uses: ncipollo/release-action with: - files: | - !(example_data)/** # Exclude 'example_data' folder - !.gitignore - !.prettier* - !.eslint* - !.npmrc + artifacts: '!(example_data)/**,!.gitignore,!.prettier*,!.eslint*,!.npmrc' token: ${{ secrets.GITHUB_TOKEN }} - name: Get Release URL