forked from semantic-release-action/github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (22 loc) · 771 Bytes
/
release.yml
File metadata and controls
26 lines (22 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
name: Release
on:
workflow_call:
inputs:
disable-semantic-release-git:
description: Disable @semantic-release/git in your release flow. Only takes effect if the action semantic-release config is used.
type: boolean
default: false
# Only allow one release workflow to execute at a time, since each release
# workflow uses shared resources (git tags, package registries)
concurrency:
group: ${{ github.workflow }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Release
uses: semantic-release-action/github-actions/semantic-release@6c14113c1273619fccad11d7638b2c9e985e9085 # v5.0.26
with:
disable-semantic-release-git: ${{ inputs.disable-semantic-release-git }}