-
Notifications
You must be signed in to change notification settings - Fork 240
33 lines (30 loc) · 988 Bytes
/
data.yaml
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
name: Fetch Data
on:
schedule:
- cron: 0 * * * *
workflow_dispatch: {}
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Setup deno
uses: denoland/setup-deno@main
with:
deno-version: v1.x
- name: Check out repo
uses: actions/checkout@v4
- name: Fetch data
uses: githubocto/flat@v3
with:
http_url: https://storage.googleapis.com/flutter_infra_release/releases/releases_macos.json
downloaded_filename: releases_macos.json
- name: Fetch data
uses: githubocto/flat@v3
with:
http_url: https://storage.googleapis.com/flutter_infra_release/releases/releases_windows.json
downloaded_filename: releases_windows.json
- name: Fetch data
uses: githubocto/flat@v3
with:
http_url: https://storage.googleapis.com/flutter_infra_release/releases/releases_linux.json
downloaded_filename: releases_linux.json