This commit is contained in:
Stephan 2021-12-12 19:51:17 +01:00
parent d44e0c8512
commit 100a1b61f4

View File

@ -3,7 +3,7 @@ name: Publish
on:
workflow_dispatch:
inputs:
confirm:
really:
description: 'This is really going to release. Enter \'yolo\' to confirm.'
required: true
@ -14,7 +14,7 @@ jobs:
steps:
- name: Confirm
if: ${{ github.event.inputs.confirm }} != 'yolo'
if: ${{ github.event.inputs.really }} != 'yolo'
uses: actions/github-script@v4
with:
script: |