Skip to content
This repository was archived by the owner on Jun 30, 2026. It is now read-only.

Commit 3a5c006

Browse files
committed
Update workflows to trigger on published releases instead of version tags
1 parent 0422b5e commit 3a5c006

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/publish-github-packages.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Publish to GitHub Packages
22

33
on:
4-
push:
5-
tags:
6-
- "v*.*.*"
4+
release:
5+
types: [published]
76

87
jobs:
98
publish:

.github/workflows/publish-npm.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Publish to NPM
22

33
on:
4-
push:
5-
tags:
6-
- "v*.*.*"
4+
release:
5+
types: [published]
76

87
jobs:
98
publish:

0 commit comments

Comments
 (0)