Skip to content

Commit

Permalink
Merge pull request #1 from retailcoder/add-github-actions
Browse files Browse the repository at this point in the history
Add GitHub actions
  • Loading branch information
retailcoder authored Oct 27, 2024
2 parents 0d5df87 + a6bd7f1 commit 6533a71
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/dotnet-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Deploy to Azure VM

env:
DOTNET_VERSION: '8'

on:
push:
branches: [ "main" ]
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Set up dependency caching for faster builds
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Build with dotnet
run: dotnet build --configuration Release

- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/pub

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

deploy:
permissions:
contents: none
runs-on: windows-latest
needs: build
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: .net-app
- name: Deploy to IIS
id: deploy-to-iis
uses: ChristopheLav/iis-deploy@v1
with:
website-name: 'api'
msdeploy-service-url: ${{ secrets.MSDEPLOY_URL }}
msdeploy-username: ${{ secrets.MSDEPLOY_USERNAME }}
msdeploy-password: ${{ secrets.MSDEPLOY_PASSWORD }}
source-path: ${{ github.workspace }}\website\publish
24 changes: 24 additions & 0 deletions .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: dotnet-CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal

0 comments on commit 6533a71

Please sign in to comment.