Skip to content

Commit c50ebb5

Browse files
committed
Merge branch 'master' into dev
2 parents ff0f903 + 0750712 commit c50ebb5

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,28 @@ jobs:
154154
app-name: ahk-github-monitor
155155
package: "./github-monitor/output"
156156
publish-profile: ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}
157+
158+
publish_viaumb11:
159+
environment: viaumb11
160+
runs-on: windows-latest
161+
162+
steps:
163+
- name: Checkout
164+
uses: actions/checkout@v2
165+
166+
- name: Setup dotnet
167+
uses: actions/setup-dotnet@v1
168+
with:
169+
dotnet-version: "6.0.x"
170+
171+
- name: "Run dotnet build"
172+
working-directory: github-monitor
173+
run: dotnet build --configuration Release --output ./output
174+
175+
- name: "Run Azure Functions Action"
176+
uses: Azure/functions-action@v1
177+
id: fa
178+
with:
179+
app-name: ahk-github-monitor
180+
package: "./github-monitor/output"
181+
publish-profile: ${{ secrets.GITHUBMONITOR_AZUREPUBLISHPROFILE }}

github-monitor/Ahk.GitHub.Monitor/Ahk.GitHub.Monitor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" />
3333
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
3434
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />
35-
<PackageReference Include="Octokit" Version="10.0.0" />
35+
<PackageReference Include="Octokit" Version="13.0.1" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

0 commit comments

Comments
 (0)