Skip to content

Commit

Permalink
Update Version for Workflow (#448)
Browse files Browse the repository at this point in the history
* Update version

* update dotnet version for workflows
  • Loading branch information
cschuchardt88 authored Jul 5, 2024
1 parent 8caf13c commit 21a1cc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'

- name: Nerdbank.GitVersioning
uses: dotnet/[email protected]
id: nbgv

- name: Update submodule
run: |
git submodule update --init --recursive --remote
git submodule update --init --recursive --remote
- name: Install dependencies
run: dotnet restore neo-express.sln
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:

env:
DOTNET_VERSION: 7.0.x
DOTNET_VERSION: 8.0.x
CONFIGURATION: Release
DIST_PATH: /tmp/dist
OUTPUT_PATH: /tmp/out
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build (${{ matrix.runtime }})
run: |
dotnet publish ./src/neoxp \
--framework net7.0 \
--framework net8.0 \
--configuration ${{ env.CONFIGURATION }} \
--runtime ${{ matrix.runtime }} \
--self-contained true \
Expand Down

0 comments on commit 21a1cc1

Please sign in to comment.