Skip to content

test

test #1

Workflow file for this run

name: build
on: [push]
jobs:
build:
strategy:
matrix:
configuration: ["Debug", "Release"]
runs-on: windows-latest
env:
CONFIGURATION: ${{ matrix.configuration }}
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: "Cache: .nuke/temp, ~/.nuget/packages"
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles("**/global.json", "**/*.csproj", "**/Directory.Packages.props") }}

Check failure on line 24 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 24, Col: 16): Unexpected symbol: '"**/global'. Located at position 11 within expression: hashFiles("**/global.json", "**/*.csproj", "**/Directory.Packages.props")
- name: "Run: "
run: ./build.cmd