-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tibber-price-json.yml
59 lines (51 loc) · 1.59 KB
/
tibber-price-json.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
trigger: none
schedules:
- cron: "0 14 * * *"
displayName: At 14:00 # UTC = 15:00 CET/16:00 CEST
branches:
include:
- main
always: true
pool:
vmImage: windows-latest
parameters:
- name: excludeTomorrow
displayName: Exclude tomorrow's price info
type: boolean
default: false
variables:
- group: tibber-pulse
resources:
repositories:
# See https://github.com/stefanes/azure-pipelines
- repository: templates
type: github
endpoint: stefanes
name: stefanes/azure-pipelines
jobs:
- job:
displayName: Tibber price info
timeoutInMinutes: 50
steps:
- template: install-modules.yml@templates
parameters:
modules:
- PSTibber
- PSGraphite
allowPrerelease: false
reinstall: true
- template: invoke-expressionwithretry.yml@templates
parameters:
${{ if parameters.excludeTomorrow }}:
expression: .\tibber-price-json.ps1 -Path '$(Pipeline.Workspace)' -TimeZone 'W. Europe Standard Time' -ExcludeTomorrow
${{ else }}:
expression: .\tibber-price-json.ps1 -Path '$(Pipeline.Workspace)' -TimeZone 'W. Europe Standard Time'
displayName: Get price info metrics
env:
TIBBER_ACCESS_TOKEN: $(TIBBER_API_KEY)
TIBBER_USER_AGENT: "stefanes.tibber-pulse/0.1.1"
GRAPHITE_ACCESS_TOKEN: $(GF_API_KEY)
GRAPHITE_METRICS_PREFIX: tibber
- publish: "$(Pipeline.Workspace)/tibber-price.json"
artifact: tibber-price
displayName: Publish Tibber price info