Skip to content

Update my-first-workflow.yml #5

Update my-first-workflow.yml

Update my-first-workflow.yml #5

name: My First Workflow
on:
workflow_dispatch:
inputs:
Demo:
default: "Some Default"
required: true
schedule:
- cron: "* 1 * * *"
push:
branches: main
jobs:
greeting:
name: Greenting
runs-on: ubuntu-latest
steps:
- name: Shell Demo
run: echo "Hej flutter.com Devs 👋"
- name: List Contents before Checkout
run: ls
- name: Checkout Repository
uses: actions/[email protected]
with:
ref: main
- name: List Contents after Checkout
run: ls