test
This commit is contained in:
parent
3f1ca178b3
commit
dadc9257a7
1 changed files with 10 additions and 9 deletions
|
|
@ -1,9 +1,10 @@
|
|||
name: GitHub Actions Demo
|
||||
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
|
||||
on: [push]
|
||||
jobs:
|
||||
Explore-GitHub-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎉 Hello World."
|
||||
|
||||
stages:
|
||||
- greeting
|
||||
|
||||
greeting_job:
|
||||
stage: greeting
|
||||
image: alpine:latest # Using Alpine Linux for a lightweight container
|
||||
script:
|
||||
- echo "🎉 Hello World."
|
||||
only:
|
||||
- master # This job runs only on pushes to the master branch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue