Skip to content

Commit

Permalink
Update build.yml to add built artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
B3none authored Jan 10, 2024
1 parent e07042a commit 2adeb21
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build --no-restore

# Add a step to publish the built DLL as an artifact
- name: Publish artifact
uses: actions/upload-artifact@v2
with:
name: RetakesPlugin-${{ github.sha }} # Name of the artifact (with the commit hash)
path: /bin/Debug/net7.0/RetakesPlugin.dll # Replace with the actual path to your built DLL

0 comments on commit 2adeb21

Please sign in to comment.