Skip to content

manual-wf

manual-wf #1

Workflow file for this run

name: manual-wf
on:
workflow_dispatch:
jobs:
manual-flow:
runs-on: ubuntu-latest
steps:
- name: create file
if: ${{ inputs.file == Null }}

Check failure on line 11 in .github/workflows/manual.yml

View workflow run for this annotation

GitHub Actions / manual-wf

Invalid workflow file

The workflow is not valid. .github/workflows/manual.yml (Line: 11, Col: 13): Unrecognized named-value: 'Null'. Located at position 16 within expression: inputs.file == Null
run: |
echo missing input file. creating file name_base64.txt
echo Nemo | base64 > ./name_base64.txt
- name: read file
id: read_file
run: |
echo "name=$(cat ./name_base64.txt)" >> $GITHUB_OUTPUT
- name: decode name
run: |
echo "result name: ${{steps.read_file.outputs.name}}"