Skip to content

Fixed scPath

Fixed scPath #35

Workflow file for this run

name: .NET Build and Release
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
build-and-release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore ./SC-TranslationSetup.csproj
- name: Publish
run: dotnet publish ./SC-TranslationSetup.csproj -r win-x64 -c Release --no-restore -o publish
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: Release
path: publish/SC-TranslationSetup.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./publish/SC-TranslationSetup.exe