Tighten release workflow triggers and test entrypoint
This commit is contained in:
parent
a4f39c6959
commit
d5c4bef414
1 changed files with 2 additions and 5 deletions
7
.github/workflows/create-release.yml
vendored
7
.github/workflows/create-release.yml
vendored
|
|
@ -1,9 +1,6 @@
|
|||
name: Pulse Release Pipeline
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'workflow-test-trigger'
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
|
|
@ -12,7 +9,7 @@ on:
|
|||
type: string
|
||||
release_notes:
|
||||
description: 'Release notes (markdown) - generated by Claude'
|
||||
required: false
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
|
|
@ -101,7 +98,7 @@ jobs:
|
|||
cache: true
|
||||
|
||||
- name: Run backend tests
|
||||
run: go test ./...
|
||||
run: make test
|
||||
|
||||
- name: Cache Playwright browsers
|
||||
uses: actions/cache@v4
|
||||
|
|
|
|||
Loading…
Reference in a new issue