Skip to content

Commit e3be60d

Browse files
committed
deploy
1 parent c1a6b99 commit e3be60d

2 files changed

Lines changed: 70 additions & 0 deletions

File tree

.github/workflows/deployapi.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
2+
# More GitHub Actions for Azure: https://github.com/Azure/actions
3+
4+
name: Build and deploy ASP.Net Core app to Azure Web App - resellio
5+
6+
on:
7+
push:
8+
branches:
9+
- feat/actions
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
runs-on: windows-latest
15+
permissions:
16+
contents: read #This is required for actions/checkout
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Set up .NET Core
22+
uses: actions/setup-dotnet@v4
23+
with:
24+
dotnet-version: '9.x'
25+
26+
- name: Build with dotnet
27+
run: dotnet build TickAPI/TickAPI/TickAPI.csproj --configuration Release
28+
29+
- name: dotnet publish
30+
run: dotnet publish TickAPI/TickAPI/TickAPI.csproj -c Release -o "${{env.DOTNET_ROOT}}/myapp"
31+
32+
- name: Upload artifact for deployment job
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: .net-app
36+
path: ${{env.DOTNET_ROOT}}/myapp
37+
38+
deploy:
39+
runs-on: windows-latest
40+
needs: build
41+
environment:
42+
name: 'Production'
43+
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
44+
permissions:
45+
id-token: write #This is required for requesting the JWT
46+
contents: read #This is required for actions/checkout
47+
48+
steps:
49+
- name: Download artifact from build job
50+
uses: actions/download-artifact@v4
51+
with:
52+
name: .net-app
53+
54+
- name: Login to Azure
55+
uses: azure/login@v2
56+
with:
57+
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_F22C931708554F8B83EE4F83C4FED407 }}
58+
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_6CDAC678ACD94858BF3421F606456B8B }}
59+
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_CA368EC8EA37446E96D5DF5F42B650EA }}
60+
61+
- name: Deploy to Azure Web App
62+
id: deploy-to-webapp
63+
uses: azure/webapps-deploy@v3
64+
with:
65+
app-name: 'resellio'
66+
slot-name: 'Production'
67+
package: .

TickAPI/TickAPI/Program.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141

4242
var builder = WebApplication.CreateBuilder(args);
4343

44+
//deploy
45+
builder.Configuration.AddEnvironmentVariables();
46+
4447
// Add controllers to the container.
4548
builder.Services.AddControllers();
4649

0 commit comments

Comments
 (0)