Skip to content

Switch to using actions/upload-artifact@v4 #5

Switch to using actions/upload-artifact@v4

Switch to using actions/upload-artifact@v4 #5

Workflow file for this run

name: Build the plugin
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Publish DLL artifact
uses: actions/upload-artifact@v4
with:
name: RetakesPlugin-${{ github.sha }}.dll
path: ./bin/Debug/net7.0/RetakesPlugin.dll