local setup procedure improvements #27
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: Release VAuthenticator Tenant Installer | |
on: | |
push: { } | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'make a tag' | |
required: false | |
jobs: | |
tag-artifact: | |
if: github.event.inputs.version != '' || github.event.inputs.version != ' ' | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: make an echo | |
run: | | |
echo version ${{github.event.inputs.version}} | |
- name: Create tag | |
uses: ncipollo/release-action@v1 | |
with: | |
bodyFile: changelog/${{github.event.inputs.version}}.md | |
tag: ${{github.event.inputs.version}} |