Skip to content

github actions

github actions #6

Workflow file for this run

---
name: zzzo
on:
push:
branches: ["*"]
tags: ["*"]
jobs:
build-zzzo:
name: "zzzo: ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [windows-2022]
script_name: ".\\resources\\scripts\\build-windows.ps1"

Check failure on line 16 in .github/workflows/zzzo.yml

View workflow run for this annotation

GitHub Actions / zzzo

Invalid workflow file

The workflow is not valid. .github/workflows/zzzo.yml (Line: 16, Col: 22): Unexpected value '.\resources\scripts\build-windows.ps1'
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: restore-nuget-packages
uses: IT-Service/[email protected]
- name: Build application
run: ${{ matrix.script_name }} "${{ matrix.os }}"