Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jithatsonei committed May 18, 2024
1 parent 368d185 commit aabd2be
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: mcr.microsoft.com/dotnet/nightly/sdk:7.0
image: mcr.microsoft.com/dotnet/nightly/sdk:8.0

steps:
- uses: actions/checkout@v2
Expand All @@ -31,11 +31,11 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: net7.0-artifacts
name: net8.0-artifacts
path: |
bin/Debug/net7.0/publish/NoBlock.deps.json
bin/Debug/net7.0/publish/NoBlock.dll
bin/Debug/net7.0/publish/NoBlock.pdb
bin/Debug/net8.0/publish/NoBlock.deps.json
bin/Debug/net8.0/publish/NoBlock.dll
bin/Debug/net8.0/publish/NoBlock.pdb
release:
needs: build
Expand All @@ -44,8 +44,8 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: net7.0-artifacts
path: bin/Debug/net7.0
name: net8.0-artifacts
path: bin/Debug/net8.0

- name: Create Tag
id: tag_version
Expand All @@ -66,7 +66,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.RELEASE_TAG }}
files: bin/Debug/net7.0/*
files: bin/Debug/net8.0/*
prerelease: ${{ env.IS_PRERELEASE }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit aabd2be

Please sign in to comment.