From dadc9257a7d3db3c4768fba7ebb4788663775d00 Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Wed, 17 Apr 2024 06:37:42 +0200 Subject: [PATCH] test --- .gitea/workflows/pipeline-test.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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