Skip to content

Commit 53ba4d0

Browse files
authored
Merge pull request #7 from dunkmann00/release-workflow
Fix glob pattern error for release workflow asset upload
2 parents 7c8df0b + 667a7ed commit 53ba4d0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/github_pages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Github Pages
22

33
on:
44
push:
5+
branches: [main]
56
# Runs when a release is published
67
release:
78
types: [released]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
id: upload-assets
4545
uses: softprops/action-gh-release@v2
4646
with:
47-
files: !(*Notifications*)
47+
files: "!(*Notifications*)"

0 commit comments

Comments
 (0)