docker file added to repo #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: First Workflow | |
on: | |
- push | |
jobs: | |
first_job: | |
name: jomacs-k8s | |
runs-on: ubuntu-latest | |
steps: | |
- name: First Message | |
run: echo "Welcome to the world of CICD with Github Actions " | |
- name: List All Files including hidden | |
run: ls -1a | |
- name: Show Present working Directory | |
run: pwd |