Skip to content

Commit

Permalink
ci: add workflow_call on release scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémie Drouet <[email protected]>
  • Loading branch information
jdrouet committed Jun 13, 2024
1 parent e24984d commit 9a2ca23
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/mrml-cli-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: mrml-cli release

on:
workflow_call:
inputs:
release_tag:
description: "Release tag to use"
required: true
type: string
workflow_dispatch:
inputs:
release_tag:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/mrml-core-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: mrml-core release

on:
workflow_call:
inputs:
release_tag:
description: "Release tag to use"
required: true
type: string
workflow_dispatch:
inputs:
release_tag:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/mrml-python-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: mrml-python release

on:
workflow_call:
inputs:
release_tag:
description: "Release tag to use"
required: true
type: string
workflow_dispatch:
inputs:
release_tag:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/mrml-wasm-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
on:
workflow_call:
inputs:
release_tag:
description: "Release tag to use"
type: string
required: true
publish:
description: "Should publish to npm registry"
type: boolean
required: false
default: false
workflow_dispatch:
inputs:
release_tag:
Expand Down

0 comments on commit 9a2ca23

Please sign in to comment.