-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 981 Bytes
/
actions_release.yml
File metadata and controls
37 lines (34 loc) · 981 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
27
28
29
30
31
32
33
34
35
36
37
name: Release GitHub Actions
on:
workflow_dispatch:
inputs:
tag:
description: "Tag for the release"
required: true
script:
description: "Specify a script to run after audit fix"
required: false
default: "yarn all"
node_version:
description: "Node.js version to use"
required: false
default: "24"
yarn_version:
description: "Specify a yarn version"
required: false
type: string
default: "4.9.2"
permissions:
contents: read
jobs:
release:
permissions:
actions: read
id-token: write
contents: write
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
with:
tag: "${{ github.event.inputs.tag }}"
script: "${{ github.event.inputs.script }}"
node_version: ${{ github.event.inputs.node_version || '24' }}
yarn_version: ${{ github.event.inputs.yarn_version || '4.9.2' }}