We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175602e commit c46c230Copy full SHA for c46c230
.github/workflows/backend.main.yml
@@ -2,7 +2,9 @@ name: deploy_backend
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [ master ]
6
+ paths:
7
+ - 'backend/**'
8
9
env:
10
AZURE_FUNCTIONAPP_NAME: GetResumeCounter # set this to your function app name on Azure
backend/api/Counter.cs
@@ -9,12 +9,4 @@ public class Counter
[JsonProperty("count")]
public int Count { get; set; }
11
}
12
-
13
- public class Counter2
14
- {
15
- [JsonProperty("id")]
16
- public string Id { get; set; }
17
- [JsonProperty("count")]
18
- public int Count { get; set; }
19
- }
20
0 commit comments