Skip to content

Commit cc0f307

Browse files
committed
Reanme example
1 parent e658ef9 commit cc0f307

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

.github/workflows/example.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test run
2+
3+
on:
4+
schedule:
5+
- cron: '0 12 * * *'
6+
workflow_dispatch:
7+
8+
9+
jobs:
10+
action-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: ./.
15+
with:
16+
netlify-token: ${{ secrets.NETLIFY_TOKEN }}
17+
netlify-site-id: ${{ secrets.NETLIFY_SITE }}
18+
- uses: actions/upload-artifact@v2
19+
with:
20+
name: exports
21+
path: '*.csv'

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test run
1+
name: Example run
22

33
on:
44
schedule:
@@ -7,7 +7,7 @@ on:
77

88

99
jobs:
10-
action-test:
10+
export-run:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)