Skip to content

Commit

Permalink
Update .NET Core version to 8.0.401 and use latest versions of action…
Browse files Browse the repository at this point in the history
…s/checkout and actions/setup-dotnet
  • Loading branch information
KrzysztofPajak committed Sep 8, 2024
1 parent 60cb903 commit b7e201d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/grandnode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ env:
AZURE_WEBAPP_PACKAGE_PATH: src/Web/Grand.Web/publish
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
CONFIGURATION: Release
DOTNET_CORE_VERSION: 8.0.101
DOTNET_CORE_VERSION: 8.0.401
WORKING_DIRECTORY: src/Web/Grand.Web
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Create mongoDB Docker container
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
publish-profile: ${{ env.AZURE_WEBAPP_PUBLISH_PROFILE }}
- name: Publish Artifacts
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v4.0.0
with:
name: webapp
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}

0 comments on commit b7e201d

Please sign in to comment.