Skip to content

Commit c52af29

Browse files
authored
chore: ci main (#273)
Removes CI run on main
1 parent 4d43b4d commit c52af29

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ env:
1515
permissions: {}
1616

1717
on:
18-
push:
19-
branches:
20-
- main
2118
pull_request:
2219
workflow_dispatch:
2320

.github/workflows/publish-commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,16 +97,16 @@ jobs:
9797

9898
- name: Publish @lazarv/react-server
9999
if: contains(needs.changed.outputs.all_changed_files, 'packages/react-server/')
100-
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server --comment=update
100+
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server
101101

102102
- name: Publish @lazarv/create-react-server
103103
if: contains(needs.changed.outputs.all_changed_files, 'packages/create-react-server/')
104-
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/create-react-server --comment=update
104+
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/create-react-server
105105

106106
- name: Publish @lazarv/react-server-adapter-core
107107
if: contains(needs.changed.outputs.all_changed_files, 'packages/react-server-adapter-core/')
108-
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server-adapter-core --comment=update
108+
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server-adapter-core
109109

110110
- name: Publish @lazarv/react-server-adapter-vercel
111111
if: contains(needs.changed.outputs.all_changed_files, 'packages/react-server-adapter-vercel/')
112-
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server-adapter-vercel --comment=update
112+
run: pnpm dlx [email protected] publish --compact --pnpm ./packages/react-server-adapter-vercel

.github/workflows/release-experimental.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
name: Release (experimental) 📦
22

33
on:
4-
workflow_run:
5-
workflows: ["CI 🧪"]
6-
types:
7-
- completed
8-
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
97

108
permissions:
119
id-token: write # Necessary for GitHub Actions to authenticate with external services
@@ -44,7 +42,7 @@ jobs:
4442
release:
4543
name: Release 📦
4644
needs: changed
47-
if: github.repository == 'lazarv/react-server' && needs.changed.outputs.should_skip != 'true' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'main' && github.event.workflow_run.event == 'push'
45+
if: github.repository == 'lazarv/react-server' && needs.changed.outputs.should_skip != 'true'
4846
runs-on: ubuntu-latest
4947
steps:
5048
- name: Checkout code

0 commit comments

Comments
 (0)