Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sskodje authored Sep 3, 2024
1 parent ffc61b2 commit d4e6dc3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
platform: [x64, x86]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: microsoft/[email protected]
- run: nuget restore ${{ env.SOLUTION_NAME }}.sln
- run: msbuild /m /p:Configuration=Release /p:Platform="${{ matrix.platform }}" ${{ env.SOLUTION_NAME }}.sln

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ScreenRecorderLib.${{matrix.platform}}
path: ${{ env.PROJECT_NAME }}\bin\${{ matrix.platform }}\Release\ScreenRecorderLib.dll
Expand All @@ -34,11 +34,11 @@ jobs:
runs-on: windows-2019
needs : build
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ScreenRecorderLib.x86
path: ScreenRecorderLib.x86.zip
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ScreenRecorderLib.x64
path: ScreenRecorderLib.x64.zip
Expand All @@ -49,5 +49,5 @@ jobs:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
.\${{ env.PROJECT_NAME }}\ScreenRecorderLib.x86.zip
.\${{ env.PROJECT_NAME }}\ScreenRecorderLib.x64.zip
ScreenRecorderLib.x86.zip
ScreenRecorderLib.x64.zip

0 comments on commit d4e6dc3

Please sign in to comment.