Skip to content

Commit

Permalink
Update and rename release.yml to simple-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gellipapa authored Jan 16, 2024
1 parent c21fb7a commit 25dc972
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 84 deletions.
84 changes: 0 additions & 84 deletions .github/workflows/release.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/simple-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Simple Release

on:
workflow_dispatch:
inputs:
versionNumber:
description: 'Version Number'
required: false
default: ''
zipName:
description: 'Zip Name'
required: true
default: 'esx_hud'
web:
description: 'Web'
required: false
default: 'true'
excludeOptions:
type: string
description: Separate the files or folders that you do not want to see in the release with a comma.
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 }}

0 comments on commit 25dc972

Please sign in to comment.