Skip to content

Scratch

Scratch #28

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:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
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 "${{ env.short_tag }}"
- name: env
run: env