name: First Workflow
on: workflow_dispatch
jobs:
first-job:
runs-on: ubuntu-latest
steps:
– name: Print greeting
run: echo “Hello World!”
– name: Print goodbye
run: echo “Done – bye!”
Getting Started with GitHub Actions(Demo project)
Related Posts:-
siva nanda
0 comments
Create Your First CI Pipeline Using Github Actions(Step-by-Step Guide)
Continous integration(CI) is the backbone of modern devops.In this guide,…
siva nanda
0 comments
Installing ubuntu on virtual box
Installing Ubuntu on Virtual Box: Install Virtual Box Pre-requisites: •…
siva nanda
0 comments
Running variations of jobs in a workflow
Here's a simple example of a CI workflow using GitHub…