Skip to content

Commit 15535ec

Browse files
authored
Add deno action to yml description
1 parent 1c5bd95 commit 15535ec

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
7381
Note that the `schedule` parameter affects the overall workflow, which may contain other jobs and steps beyond Flat.

0 commit comments

Comments
 (0)