mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 07:31:05 -05:00
manual trigger (#2681)
This commit is contained in:
parent
9bf6767260
commit
60e7787217
1 changed files with 13 additions and 5 deletions
18
.github/workflows/deploy-release.yml
vendored
18
.github/workflows/deploy-release.yml
vendored
|
@ -16,7 +16,14 @@ name: Deploy Release
|
|||
on:
|
||||
# Start when a release is published
|
||||
release:
|
||||
types: [published, edited]
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
# Set the input variables you want to pull in
|
||||
inputs:
|
||||
release_version:
|
||||
description: 'version to release. Ex: v4.3.2'
|
||||
required: true
|
||||
default: 'v'
|
||||
|
||||
###############
|
||||
# Set the Job #
|
||||
|
@ -50,10 +57,6 @@ jobs:
|
|||
############################
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
# Full git history is needed to get a proper list
|
||||
# of changed files within `super-linter`
|
||||
fetch-depth: 0
|
||||
|
||||
###########################
|
||||
# Set current date to ENV #
|
||||
|
@ -97,6 +100,11 @@ jobs:
|
|||
echo "RELEASE_VERSION=$(echo ${{ github.event.release.name }} \
|
||||
| grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" \
|
||||
>> "${GITHUB_ENV}"
|
||||
if [ -z "${RELEASE_VERSION}" ]; then
|
||||
echo "No release version found in environment, using input..."
|
||||
echo "RELEASE_VERSION=${{ github.event.inputs.release_version }}" \
|
||||
>> "${GITHUB_ENV}"
|
||||
fi
|
||||
|
||||
#########################
|
||||
# Update deployment API #
|
||||
|
|
Loading…
Reference in a new issue