Skip to content

Scratch

Scratch #22

Workflow file for this run

#saved so that I can have a workflow to try out in a branch
name: Scratch
on:
workflow_dispatch:
inputs:
tag:
description: tag
required: true
jobs:
build:
strategy:

Check failure on line 13 in .github/workflows/branch-scratch.yml

View workflow run for this annotation

GitHub Actions / Scratch

Invalid workflow file

The workflow is not valid. .github/workflows/branch-scratch.yml (Line: 13, Col: 5): Required property is missing: runs-on
matrix:
os: [ubnutu-latest, macos-latest]
steps:
- name: save short tag to environment
run: echo "short_tag=$(echo ${{ github.event.inputs.tag }} | head -c 8 )" >> $GITHUB_ENV
- name: echo env var
run: echo "${{ github.env.short_tag }}"