File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed
Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,10 @@ name: GitHub Monitor - Azure publish
22
33on : [workflow_dispatch]
44
5+ # TODO avoid job steps copy paste with composite actions
6+
57jobs :
6- publish :
8+ publish_mobweb :
79 environment : mobweb
810 runs-on : windows-latest
911
2729 app-name : ahk-github-monitor
2830 package : " ./github-monitor/output"
2931 publish-profile : ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}
32+
33+ publish_adatvez :
34+ environment : adatvez
35+ runs-on : windows-latest
36+
37+ steps :
38+ - name : Checkout
39+ uses : actions/checkout@v2
40+
41+ - name : Setup dotnet
42+ uses : actions/setup-dotnet@v1
43+ with :
44+ dotnet-version : " 6.0.x"
45+
46+ - name : " Run dotnet build"
47+ working-directory : github-monitor
48+ run : dotnet build --configuration Release --output ./output
49+
50+ - name : " Run Azure Functions Action"
51+ uses : Azure/functions-action@v1
52+ id : fa
53+ with :
54+ app-name : ahk-github-monitor
55+ package : " ./github-monitor/output"
56+ publish-profile : ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}
You can’t perform that action at this time.
0 commit comments