Skip to content

Commit

Permalink
Switch to using actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
B3none authored Jan 10, 2024
1 parent 52c48e4 commit 7524916
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ 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
- name: Publish DLL artifact
uses: actions/upload-artifact@v4
with:
name: RetakesPlugin-${{ github.sha }}.dll # Name of the artifact (with the commit hash)
path: ./bin/Debug/net7.0/RetakesPlugin.dll # Replace with the actual path to your built DLL
name: RetakesPlugin-${{ github.sha }}.dll
path: ./bin/Debug/net7.0/RetakesPlugin.dll

0 comments on commit 7524916

Please sign in to comment.