diff --git a/.gitea/workflows/pipeline-test.yaml b/.gitea/workflows/pipeline-test.yaml index d03397a..5639d48 100644 --- a/.gitea/workflows/pipeline-test.yaml +++ b/.gitea/workflows/pipeline-test.yaml @@ -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