We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1df0e6 commit 56e063dCopy full SHA for 56e063d
.github/workflows/example.yml
@@ -0,0 +1,27 @@
1
+name: Example
2
+# an example workflow that also monitors success of the preview api
3
+
4
+on:
5
+ schedule:
6
+ - cron: '0 */6 * * *'
7
+ # every 6 hours
8
9
+defaults:
10
+ run:
11
+ shell: bash
12
13
+jobs:
14
+ test:
15
+ runs-on: windows-latest
16
17
+ steps:
18
+ - run: echo hello > world.txt
19
20
+ - uses: actions/upload-artifact@v1
21
+ with:
22
+ name: my-artifact
23
+ path: world.txt
24
25
+ - uses: geekyeggo/delete-artifact@v1
26
27
0 commit comments