Skip to content

Commit

Permalink
update yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii Vaskivskyi committed Jun 7, 2024
1 parent 748ae88 commit 02ecaa8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Build and deploy .NET Core application to Web App GeesemonWeb20240508172758
name: Build and deploy .NET Core application to Web App GeesemonApp
on:
push:
branches:
- master
env:
AZURE_WEBAPP_NAME: GeesemonWeb20240508172758
AZURE_WEBAPP_PACKAGE_PATH: Geesemon.Web\published
AZURE_WEBAPP_NAME: GeesemonApp
AZURE_WEBAPP_PACKAGE_PATH: Geesemon.Web/published
CONFIGURATION: Release
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: Geesemon.Web
jobs:
build:
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET SDK
Expand All @@ -32,7 +32,7 @@ jobs:
name: webapp
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
deploy:
runs-on: windows-latest
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifact from build job
Expand All @@ -44,5 +44,5 @@ jobs:
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.GeesemonWeb20240508172758_A4AB }}
publish-profile: ${{ secrets.GeesemonApp_4008 }}
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}

0 comments on commit 02ecaa8

Please sign in to comment.