Skip to content

Commit

Permalink
Action Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jguadagno committed Oct 25, 2023
1 parent 27ac99d commit 8c7d088
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cwjg-functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
AZURE_FUNCTIONAPP_PACKAGE_PATH: .\published
CONFIGURATION: Release
DOTNET_CORE_VERSION: 7.0.x
WORKING_DIRECTORY: .
WORKING_DIRECTORY: ./src/Contacts.Functions.ThumbnailCreator
jobs:
build:
runs-on: windows-latest
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/deploy-to-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,19 @@ on:
env:
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
AZURE_WEBAPI_PACKAGE_PATH: '.'
DOTNET_CORE_VERSION: 7.0.x

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Install dependencies
run: dotnet restore ./src/Contacts.sln
- name: Build API
Expand Down

0 comments on commit 8c7d088

Please sign in to comment.