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
|
name: Pulse Release Pipeline
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'workflow-test-trigger'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
version:
|
version:
|
||||||
|
|
@ -12,7 +9,7 @@ on:
|
||||||
type: string
|
type: string
|
||||||
release_notes:
|
release_notes:
|
||||||
description: 'Release notes (markdown) - generated by Claude'
|
description: 'Release notes (markdown) - generated by Claude'
|
||||||
required: false
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
@ -101,7 +98,7 @@ jobs:
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
- name: Run backend tests
|
- name: Run backend tests
|
||||||
run: go test ./...
|
run: make test
|
||||||
|
|
||||||
- name: Cache Playwright browsers
|
- name: Cache Playwright browsers
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue