Skip to content

Commit

Permalink
ci: add experimental channel
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEdoRan committed Jul 2, 2024
1 parent f8fe120 commit 5b9ad94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run: pnpm run test:lib

CD:
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/next'|| github.ref == 'refs/heads/4.x' }}
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/next'|| github.ref == 'refs/heads/experimental'|| github.ref == 'refs/heads/4.x' }}
runs-on: ubuntu-latest
needs: [CI]
steps:
Expand Down
5 changes: 5 additions & 0 deletions packages/next-safe-action/release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ module.exports = {
channel: "next",
prerelease: true,
},
{
name: "experimental",
channel: "experimental",
prerelease: true,
},
{
name: "beta",
channel: "beta",
Expand Down

0 comments on commit 5b9ad94

Please sign in to comment.