File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,12 +62,20 @@ jobs:
6262 scheduled :
6363 runs-on : ubuntu-latest
6464 steps :
65+ # This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step
66+ - name : Setup deno
67+ uses : denoland/setup-deno@main
68+ with :
69+ deno-version : v1.x
70+ # Check out the repository so it can read the files inside of it and do other operations
6571 - name : Check out repo
6672 uses : actions/checkout@v2
73+ # The Flat Action step. We fetch the data in the http_url and save it as downloaded_filename
6774 - name : Fetch data
6875 uses : githubocto/flat@v1
6976 with :
7077 http_url : # THE URL YOU WISH TO FETCH GOES HERE
78+ downloaded_filename : # The http_url gets saved and renamed in our repository. Example: data.json, data.csv, image.png
7179` ` `
7280
7381Note that the ` schedule` parameter affects the overall workflow, which may contain other jobs and steps beyond Flat.
You can’t perform that action at this time.
0 commit comments