Skip to content

Commit

Permalink
Try a different release action (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvire authored Oct 24, 2023
1 parent b162932 commit e6573be
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -14,14 +22,9 @@ jobs:

- name: Create Release
id: create_release
uses: phuonghuynh/[email protected]
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
Expand Down

0 comments on commit e6573be

Please sign in to comment.