Skip to content

Update release.yml

Update release.yml #4

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
paths-ignore:
- '**/README.md'
- '**/.gitignore'
- '**/LICENSE'
pull_request:
branches: [ "master" ]
paths-ignore:
- '**/README.md'
- '**/.gitignore'
- '**/LICENSE'
env:
BUILD_NUMBER: ${{ github.run_number }}
PROJECT_PATH: "./CSSKin/CSSKin.csproj"
PROJECT_NAME: "CSSKin"
OUTPUT_PATH: "./CSSKin"
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build ${{ env.PROJECT_PATH }} -c CSSKin -o ${{ env.OUTPUT_PATH }

Check failure on line 37 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: 37, Col: 12): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.