Skip to content

Commit 9d5d14b

Browse files
committed
fix
1 parent 2406088 commit 9d5d14b

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ jobs:
126126
# Run on main branches, release branches, or when explicitly requested
127127
if: |
128128
github.ref == 'refs/heads/master' ||
129-
github.ref == 'refs/heads/develop' ||
130129
startsWith(github.ref, 'refs/heads/release/') ||
131130
startsWith(github.ref, 'refs/heads/hotfix/') ||
132131
startsWith(github.ref, 'refs/tags/v') ||
@@ -195,34 +194,3 @@ jobs:
195194
name: all-guests
196195
path: output/
197196
retention-days: 7
198-
199-
# Semantic release - automatically create releases based on conventional commits
200-
semantic-release:
201-
runs-on: ubuntu-latest
202-
# Only run on master branch pushes after all other jobs pass
203-
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
204-
needs: [check-fmt, check-wasm, clippy-root, clippy-guests, test, build-guest]
205-
permissions:
206-
contents: write
207-
issues: write
208-
pull-requests: write
209-
steps:
210-
- uses: actions/checkout@v4
211-
with:
212-
fetch-depth: 0
213-
token: ${{ secrets.GITHUB_TOKEN }}
214-
215-
- name: Setup Node.js
216-
uses: actions/setup-node@v4
217-
with:
218-
node-version: '20'
219-
220-
- name: Install semantic-release
221-
run: |
222-
npm install -g semantic-release @semantic-release/changelog @semantic-release/git
223-
224-
- name: Semantic Release
225-
run: semantic-release
226-
env:
227-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
228-

0 commit comments

Comments
 (0)