-
-
Notifications
You must be signed in to change notification settings - Fork 751
36 lines (34 loc) · 1.12 KB
/
simple-release.yml
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
name: Simple Release
on:
workflow_dispatch:
inputs:
versionNumber:
description: 'Version Number'
required: false
default: ''
zipName:
description: 'Zip Name'
required: true
default: 'esx_core'
web:
description: 'Web'
required: false
default: 'false'
excludeOptions:
type: string
description: Separate the files or folders that you do not want to see in the release with a comma.
required: false
default: 'node_modules,package.json,package-lock.json'
neededNewBranch:
type: string
description: Specify true or false if you want to create a new branch.
required: false
jobs:
simple-create-release:
uses: esx-framework/.github/.github/workflows/simple-release.yml@main
with:
zipName: ${{ github.event.inputs.zipName }}
web: ${{ github.event.inputs.web }}
versionNumber: ${{ github.event.inputs.versionNumber }}
excludeOptions: ${{ github.event.inputs.excludeOptions }}
neededNewBranch: ${{ github.event.inputs.neededNewBranch }}