manual trigger of workflow

This commit is contained in:
Sayan Mallick 2024-09-09 22:15:54 +05:30
parent 1bb3492060
commit fa1cbfc6b2

View file

@ -3,7 +3,7 @@ name: Deploy and Test Branch
on:
workflow_dispatch:
inputs:
branches:
branch:
description: 'Branch to deploy and test'
required: true
default: 'develop'
@ -37,6 +37,11 @@ jobs:
- name: check if branch exists
id: getbranch
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
BRANCH="${{ github.event.inputs.branch }}"
else
BRANCH="${{ github.head_ref }}"
fi
if git show-ref ${{ github.head_ref}}; then
echo branch exists
echo "netclientbranch=${{ github.head_ref }}" >> $GITHUB_OUTPUT