Skip to content

Commit

Permalink
Added example workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Apr 29, 2020
1 parent b1df0e6 commit 56e063d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Example
# an example workflow that also monitors success of the preview api

on:
schedule:
- cron: '0 */6 * * *'
# every 6 hours

defaults:
run:
shell: bash

jobs:
test:
runs-on: windows-latest

steps:
- run: echo hello > world.txt

- uses: actions/upload-artifact@v1
with:
name: my-artifact
path: world.txt

- uses: geekyeggo/delete-artifact@v1
with:
name: my-artifact

0 comments on commit 56e063d

Please # to comment.