Skip to content

Commit

Permalink
👷 Match scoped packages for NPM publish
Browse files Browse the repository at this point in the history
According to the [github
docs](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)
`*` will match multiple characters but not `/` which means `*-v*` will
not match `@interactors/html-v1.0.1`

This changes `*` to `**` so that it should match.
  • Loading branch information
cowboyd committed Sep 17, 2024
1 parent bd77029 commit a2657ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish
on:
push:
tags:
- "*-v*"
- "**-v*"

jobs:
publish-to-npm:
Expand Down

0 comments on commit a2657ee

Please sign in to comment.