Skip to content

chore(deps-dev): bump @vue/test-utils from 2.4.11 to 2.5.0 (#3318) #946

chore(deps-dev): bump @vue/test-utils from 2.4.11 to 2.5.0 (#3318)

chore(deps-dev): bump @vue/test-utils from 2.4.11 to 2.5.0 (#3318) #946

Workflow file for this run

name: Release
on:
push:
branches: [main, beta, development]
# Lets a human force a release without pushing — the shared workflow already
# expects this: its skip guard is written `github.event_name != 'push' || …`
# precisely so a dispatch is "deliberately never skipped … including of a
# commit this guard would refuse". 18 of the 21 fleet apps already declare it;
# this repo was one of the three that did not, so the only way to trigger a
# release here was to push.
workflow_dispatch:
jobs:
unstable:
if: github.ref == 'refs/heads/development'
uses: ConductionNL/.github/.github/workflows/release.yml@main
with:
release-type: unstable
app-name: openregister
verify-vendor-deps: true
vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src'
secrets: inherit
beta:
if: github.ref == 'refs/heads/beta'
uses: ConductionNL/.github/.github/workflows/release.yml@main
with:
release-type: beta
app-name: openregister
verify-vendor-deps: true
vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src'
secrets: inherit
stable:
if: github.ref == 'refs/heads/main'
uses: ConductionNL/.github/.github/workflows/release.yml@main
with:
release-type: stable
app-name: openregister
verify-vendor-deps: true
vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src'
secrets: inherit