Skip to content

new Process set WindowStyle = ProcessWindowStyle.Hidden #20

new Process set WindowStyle = ProcessWindowStyle.Hidden

new Process set WindowStyle = ProcessWindowStyle.Hidden #20

Workflow file for this run

# This workflow will build the project and create a release when a new tag is created
name: Build and release
# Only deploy when a new tag is pushed
on:
push:
tags:
- "v*.*.*"
- "v*.*-alpha"
#on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
# Allow this workflow to write back to the repository
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Update VersionInfo.cs with associated tag if it exists
run: |
# Extract the tag name that triggered the event and remove the 'refs/tags/' prefix
cd PicoNesLoader/PicoNesLoader
input_string=${{ github.ref }}
prefix="refs/tags/"
tag="No versioninfo found"
if [[ $input_string == $prefix* ]]; then
echo "The string starts with 'refs/tags/'."
tag="${input_string#$prefix}"
else
echo "The string does not start with 'refs/tags/'."
fi
echo "Tag is ${tag}"
sed -i "s/DEVVERSION/${tag}/g" VersionInfo.cs
cat VersionInfo.cs
- name: Restore dependencies
run: dotnet restore /p:EnableWindowsTargeting=true
working-directory: PicoNesLoader
- name: Build
run: dotnet build --no-restore /p:EnableWindowsTargeting=true
working-directory: PicoNesLoader
- name: Test
run: dotnet test --no-build --verbosity normal /p:EnableWindowsTargeting=true
working-directory: PicoNesLoader
- name: Publish
run: dotnet publish -c Release -r win-x86 --self-contained true /p:EnableWindowsTargeting=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
working-directory: PicoNesLoader
- name: Create asset direcory
run: mkdir -p assets/PicoSystemInfoNesLoader
- name: copy published files
run: cp -r PicoNesLoader/PicoNesLoader/bin/Release/net7.0-windows/win-x86/publish/* assets/PicoSystemInfoNesLoader
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip output
run: zip -r PicoSystemInfoNesLoader.zip PicoSystemInfoNesLoader
working-directory: assets
- name: List
run: ls -l
working-directory: assets
- name: Push to release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: assets/PicoSystemInfoNesLoader.zip
body_path: CHANGELOG.md