Skip to content

Commit

Permalink
update dotnet workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto authored May 6, 2024
1 parent 82956de commit 8cda5cb
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/net70-aspnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
workflow_dispatch:

env:
DOTNET_VERSION: '7.0.x'
DOTNET_PREVIEW_VERSION: true
SOURCE_CODE_PATH: 'razorpageapp/razorpageapp.csproj'
BUILD_CONFIGURATION: Release

Expand All @@ -29,10 +27,12 @@ jobs:
- uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
id: setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
include-prerelease: ${{ env.DOTNET_PREVIEW_VERSION }}
global-json-file: dotnet/global.json

- run: echo '${{ steps.setup.outputs.dotnet-version }}'

- name: Restore dependencies
run: dotnet restore ${{ env.SOURCE_CODE_PATH }}
Expand All @@ -51,27 +51,26 @@ jobs:

deploy-aspnetcore7:
runs-on: ubuntu-latest

needs: build-aspnetcore7

environment: Production
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v2
with:
name: .net-app

- name: Az CLI Login
uses: azure/login@v1
uses: azure/login@v2
with:
client-id: ${{ vars.AZURE_CLIENT_ID }}
tenant-id: ${{ vars.AZURE_TENANT_ID }}
subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: 'Run Azure webapp deploy action'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ vars.AZURE_WEBAPP_NAME }}
app-name: ${{ vars.AZURE_WEBAPP_NAME }}-dotnet7
slot-name: 'Production'
package: .

Expand Down
78 changes: 78 additions & 0 deletions .github/workflows/net80-aspnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: ASP.NET Core 8.0

on:
push:
branches: [ main ]
paths:
- 'dotnet/net8.0/**'
workflow_dispatch:

env:
SOURCE_CODE_PATH: 'razorpageapp/razorpageapp.csproj'
BUILD_CONFIGURATION: Release

permissions:
id-token: write
contents: read

jobs:
build-aspnetcore8:
runs-on: ubuntu-latest

defaults:
run:
working-directory: 'dotnet/net8.0'

steps:
- uses: actions/checkout@v2

- name: Setup .NET
id: setup
uses: actions/setup-dotnet@v3
with:
global-json-file: dotnet/global.json

- run: echo '${{ steps.setup.outputs.dotnet-version }}'

- name: Restore dependencies
run: dotnet restore ${{ env.SOURCE_CODE_PATH }}

- name: Build
run: dotnet build --no-restore --configuration ${{ env.BUILD_CONFIGURATION }} ${{ env.SOURCE_CODE_PATH }}

- name: Publish
run: dotnet publish --no-build --configuration ${{ env.BUILD_CONFIGURATION }} --output ${{env.DOTNET_ROOT}}/myapp ${{ env.SOURCE_CODE_PATH }}

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v2
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/myapp

deploy-aspnetcore8:
runs-on: ubuntu-latest
needs: build-aspnetcore8
environment: Production
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v2
with:
name: .net-app

- name: Az CLI Login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: 'Run Azure webapp deploy action'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ vars.AZURE_WEBAPP_NAME }}-dotnet8
slot-name: 'Production'
package: .

- name: Az CLI Logout
run: az logout

0 comments on commit 8cda5cb

Please sign in to comment.