Skip to content

If Arbiter is present, disable file loading #4

If Arbiter is present, disable file loading

If Arbiter is present, disable file loading #4

Workflow file for this run

name: .NET
on:
push:
tags:
- '*'
jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Create Release
id: create_release
uses: softprops/[email protected]
with:
name: ${{ github.ref_name }}
draft: false
prerelease: false
generate_release_notes: false
build:
name: Build Release
needs: create_release
strategy:
matrix:
kind: ['windows']
include:
- kind: windows
os: windows-latest
target: win-x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet publish --configuration Debug --self-contained false
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
directory: ${{ github.workspace }}/build/Debug/bin/win-x64/publish
type: 'zip'
filename: ${{ github.workspace }}/Release-${{ matrix.target }}.zip
- name: Release
uses: softprops/[email protected]
with:
files: ${{ github.workspace }}/Release-${{ matrix.target }}.zip