File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -27,34 +27,34 @@ jobs:
27
27
run : dotnet build --configuration Release
28
28
29
29
- name : dotnet publish
30
- run : dotnet publish -c Release -o "${{env.DOTNET_ROOT}}/myapp "
30
+ run : dotnet publish -c Release -o "${{env.DOTNET_ROOT}}/AdminHubApi "
31
31
32
32
- name : Upload artifact for deployment job
33
33
uses : actions/upload-artifact@v4
34
34
with :
35
35
name : .net-app
36
- path : ${{env.DOTNET_ROOT}}/myapp
36
+ path : ${{env.DOTNET_ROOT}}/AdminHubApi
37
37
38
38
deploy :
39
39
runs-on : windows-latest
40
40
needs : build
41
41
42
- permissions :
43
- id-token : write # This is required for requesting the JWT
44
- contents : read # This is required for actions/checkout
42
+ permissions :
43
+ id-token : write # This is required for requesting the JWT
44
+ contents : read # This is required for actions/checkout
45
45
46
46
steps :
47
47
- name : Download artifact from build job
48
48
uses : actions/download-artifact@v4
49
49
with :
50
50
name : .net-app
51
-
52
- - name : Login to Azure
53
- uses : azure/login@v2
54
- with :
55
- client-id : ${{ secrets.AZUREAPPSERVICE_CLIENTID_A4151A17B46646DD9EE92E0A47E4872F }}
56
- tenant-id : ${{ secrets.AZUREAPPSERVICE_TENANTID_DF11F3AE9D8F45EC8CB5BF531F4DEC22 }}
57
- subscription-id : ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_B5CE41383DB04033B4A8AA3AA81CE1AB }}
51
+
52
+ - name : Login to Azure
53
+ uses : azure/login@v2
54
+ with :
55
+ client-id : ${{ secrets.AZUREAPPSERVICE_CLIENTID_A4151A17B46646DD9EE92E0A47E4872F }}
56
+ tenant-id : ${{ secrets.AZUREAPPSERVICE_TENANTID_DF11F3AE9D8F45EC8CB5BF531F4DEC22 }}
57
+ subscription-id : ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_B5CE41383DB04033B4A8AA3AA81CE1AB }}
58
58
59
59
- name : Deploy to Azure Web App
60
60
id : deploy-to-webapp
You can’t perform that action at this time.
0 commit comments