Skip to content

fix: Remove duplicate loading #65

fix: Remove duplicate loading

fix: Remove duplicate loading #65

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_dispatch
env:
BUILD_TYPE: Release
DOTNET_VERSION: 8
ASSEMBLY_NAME: Hosihikari.PluginManager
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ env.DOTNET_VERSION }}.0.x
- name: Build
run: dotnet publish -c ${{ env.BUILD_TYPE }}
- name: Upload Artifact
uses: actions/[email protected]
with:
name: ${{ env.ASSEMBLY_NAME }}.${{ github.sha }}
path: src/bin