Skip to content

Commit

Permalink
Update github action to v8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TommyKolodziejczyk committed Sep 21, 2024
1 parent e8eeb94 commit daf4b64
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore
- name: Build
Expand All @@ -30,14 +30,14 @@ jobs:
working-directory: src/openlauncher
run: dotnet publish -c Release -r ${{ matrix.rid }} --self-contained
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: "OpenLauncher-${{ matrix.rid }}"
path: src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/**/*
path: src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/**/*
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
files: |
src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/openlauncher
src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/openlauncher.exe
src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/openlauncher
src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/openlauncher.exe

0 comments on commit daf4b64

Please sign in to comment.