Skip to content

Commit

Permalink
Add manual trigger option to Nessie
Browse files Browse the repository at this point in the history
  • Loading branch information
arielshaqed committed Sep 27, 2020
1 parent 46216dd commit 9794f4c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/nessie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
branches:
- master
pull_request:
workflow_dispatch:
inputs:
ref:
description: 'git ref (e.g. branch)'
required: true
jobs:
deploy-image:
name: Build and push Docker image
Expand All @@ -12,6 +17,8 @@ jobs:

- name: Checkout
uses: actions/checkout@v2
with:
ref: "${{ github.event.inputs.ref }}"

- name: Setup UI (node 10)
uses: actions/setup-node@v1
Expand Down

0 comments on commit 9794f4c

Please sign in to comment.