We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2dfb32 commit 44049b2Copy full SHA for 44049b2
1 file changed
.github/workflows/publish.yml
@@ -1,14 +1,15 @@
1
name: Publish to npm
2
3
on:
4
- pull_request:
5
- types: [closed]
+ push:
6
branches:
7
- production
8
9
jobs:
+ ci:
10
+ uses: ./.github/workflows/ci.yml
11
+
12
publish:
- if: github.event.pull_request.merged == true
13
needs: ci
14
runs-on: ubuntu-latest
15
@@ -56,9 +57,4 @@ jobs:
56
57
with:
58
tag_name: v${{ steps.pkg.outputs.version }}
59
name: v${{ steps.pkg.outputs.version }}
- body: |
60
- Published from PR #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}
61
generate_release_notes: true
62
-
63
- ci:
64
- uses: ./.github/workflows/ci.yml
0 commit comments