Skip to content

Don't forget the $.

Don't forget the $. #3

Workflow file for this run

name: CI
on:
push:
branches:
- "*"
- "*/*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
versions: [v2.0.0-alpha.130, latest, ""]
runs-on: ${{ matrix.os }}
steps:
- name: Setup with version argument
if: ${{ matrix.versions != '' }}
uses: toitlang/action-setup@${{ github.sha }}

Check failure on line 21 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 21, Col: 15): Unrecognized named-value: 'github'. Located at position 1 within expression: github.sha .github/workflows/ci.yml (Line: 27, Col: 15): Unrecognized named-value: 'github'. Located at position 1 within expression: github.sha
with:
toit-version: v2.0.0-alpha.130
- name: Setup without version argument
if: ${{ matrix.versions == '' }}
uses: toitlang/action-setup@${{ github.sha }}