Skip to content

Commit e2312df

Browse files
authored
Add missing workflow for Azure publish viaubb01
1 parent 19475c9 commit e2312df

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/github-monitor-azure-publish.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,31 @@ jobs:
130130
package: "./github-monitor/output"
131131
publish-profile: ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}
132132

133+
publish_viaubb01:
134+
environment: viaubb01
135+
runs-on: windows-latest
136+
137+
steps:
138+
- name: Checkout
139+
uses: actions/checkout@v2
140+
141+
- name: Setup dotnet
142+
uses: actions/setup-dotnet@v1
143+
with:
144+
dotnet-version: "6.0.x"
145+
146+
- name: "Run dotnet build"
147+
working-directory: github-monitor
148+
run: dotnet build --configuration Release --output ./output
149+
150+
- name: "Run Azure Functions Action"
151+
uses: Azure/functions-action@v1
152+
id: fa
153+
with:
154+
app-name: ahk-github-monitor
155+
package: "./github-monitor/output"
156+
publish-profile: ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}
157+
133158
publish_viaumb02:
134159
environment: viaumb02
135160
runs-on: windows-latest

0 commit comments

Comments
 (0)