We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3addb87 commit eddd5beCopy full SHA for eddd5be
.github/workflows/ci.yml
@@ -48,7 +48,7 @@ jobs:
48
needs: [lint, test]
49
steps:
50
- name: Check releasable
51
- if: ${{ github.repository == 'marko-js/htmljs-parser' && github.ref == 'refs/heads/next' && github.event_name == 'push' }}
+ if: ${{ github.repository == 'marko-js/htmljs-parser' && github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next') }}
52
run: exit 0
53
- name: Checkout code
54
uses: actions/checkout@v2
.releaserc.json
@@ -0,0 +1,3 @@
1
+{
2
+ "branches": ["main", "next"]
3
+}
0 commit comments