Skip to content

My last change in bash shell #12

My last change in bash shell

My last change in bash shell #12

Workflow file for this run

name : Hello world workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: hello world
run: echo "Hello world 2"
shell: bash
goodbye:
runs-on : ubuntu-latest
steps:
- name: goodbye world
run: echo "Goodbye world"
shell: bash