mirror of
https://github.com/gravitl/netmaker.git
synced 2026-04-23 00:17:10 +08:00
Merge pull request #3114 from gravitl/NET-1518
manual trigger of workflow
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user