Skip to content

initial commit

initial commit #3

Workflow file for this run

name: Build Plugins
on: push
jobs:
build:
if: ${{ github.repository != 'diogotr7/Artemis.PluginTemplate' && github.repository != 'Artemis-RGB/Artemis.PluginTemplate' && '[ -f .template ]' }}
runs-on: ubuntu-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Clone
uses: actions/checkout@v2
- name: Build
run: dotnet publish -c Release src
- name: Upload
uses: actions/upload-artifact@v3
with:
name: Plugin
path: src/Artemis.Plugins.MyPlugin/bin/x64/Release/net7.0/publish