Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chingc committed Aug 7, 2024
1 parent 992a117 commit 7586570
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Demo

on:
push:
schedule:
- cron: '30 5 1 * *'
workflow_dispatch:

jobs:

build:

runs-on: ubuntu-latest

steps:
- name: Github context
run: echo '${{ toJson(github) }}'

- name: Env context
run: echo '${{ toJson(env) }}'

- name: Vars context
run: echo '${{ toJson(vars) }}'

- name: Job context
run: echo '${{ toJson(job) }}'

- name: Steps context
run: echo '${{ toJson(steps) }}'

- name: Runner context
run: echo '${{ toJson(runner) }}'

0 comments on commit 7586570

Please sign in to comment.