Skip to content

Added Custom World Generation Options For New Worlds. (#1935) #51

Added Custom World Generation Options For New Worlds. (#1935)

Added Custom World Generation Options For New Worlds. (#1935) #51

Workflow file for this run

name: .NET Core Desktop
on:
push:
tags:
- "*"
jobs:
build:
strategy:
matrix:
configuration: [Release]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Install the .NET Core workload
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package
shell: pwsh
run: ./build.ps1 -Version ${{ github.ref_name }}
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "release/TEdit*.zip"
generateReleaseNotes: true