Allow package versions to be manually published as pre-releases for a selected branch #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual trigger | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: 'Who to greet' | |
default: 'World' | |
jobs: | |
hello: | |
runs-on: ubuntu-latest | |
steps: | |
- name: branch | |
run: echo "Hello ${{ github.ref_name }} " | |
- name: sha | |
run: echo "Hello ${{ github.sha }} " |