Skip to content

Fix again

Fix again #31

Workflow file for this run

name: CI-Installer
on:
push:
branches:
- master
- release/*
tags:
- installer-*
pull_request:
branches:
- master
- release/*
env:
CONFIGURATION: 'Release'
PUBLISH_PATH: './Installer/bin/${{ env.CONFIGURATION }}/net8.0/win-x64/publish/'

Check failure on line 17 in .github/workflows/ci-installer.yml

View workflow run for this annotation

GitHub Actions / CI-Installer

Invalid workflow file

The workflow is not valid. .github/workflows/ci-installer.yml (Line: 17, Col: 17): Unrecognized named-value: 'env'. Located at position 1 within expression: env.CONFIGURATION
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: 1
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: "Set Publish Path"
run: |
echo "PUBLISH_PATH=./Installer/bin/${{ env.CONFIGURATION }}/net8.0/win-x64/publish/" >> $GITHUB_ENV
- name: Build
run: dotnet build -c ${{ env.CONFIGURATION }} ./Installer/Installer.csproj
- name: Publish
run: dotnet publish -c ${{ env.CONFIGURATION }} ./Installer/Installer.csproj
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Installer.exe
path: ${{ env.PUBLISH_PATH }}Installer.exe
- name: Zip
if: startsWith(github.ref, 'refs/tags/')
run: Compress-Archive -Path ${{ env.PUBLISH_PATH }}Installer.exe -Destination ./Installer.zip
shell: powershell
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./Installer.zip
make_latest: true