Skip to content

Commit d171411

Browse files
ci: added push event workflow
1 parent ebd3802 commit d171411

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/push.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Push to branch
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
- '!main'
8+
9+
jobs:
10+
push:
11+
uses: cloudbeds/workflows/.github/workflows/npm-test-build.yml@main
12+
secrets:
13+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and publish npm package
33
on:
44
push:
55
branches:
6-
- main
6+
- 'main'
77

88
jobs:
99
publish:

0 commit comments

Comments
 (0)