diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index e30ed138..807be91b 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -6,6 +6,7 @@ on: - main - alpha - beta + - next - 4.x pull_request: branches: @@ -27,7 +28,7 @@ jobs: - run: npm run lint -- --filter=next-safe-action CD: - if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/4.x' }} + if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/next'|| github.ref == 'refs/heads/4.x' }} runs-on: ubuntu-latest needs: [CI] steps: diff --git a/.releaserc.json b/.releaserc.json index f8bcdd17..0fab7d29 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -13,6 +13,11 @@ "channel": "beta", "prerelease": true }, + { + "name": "next", + "channel": "next", + "prerelease": true + }, { "name": "4.x", "range": "4.x",