diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ef42839..5106b1c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -3,6 +3,17 @@ name: Gitea Actions Demo run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 on: [workflow_dispatch, push] jobs: + Test-Job: + runs-on: ubuntu-latest + steps: + - name: Print greeting + run: echo "Hello world!" + - name: Do work + run: | + echo "Double run with a name possible?" + echo "Hopefully yes" + - name: Print goodbye + run: echo "Done - bye!" Explore-Gitea-Actions: runs-on: ubuntu-latest steps: @@ -16,14 +27,4 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." - Test-Job: - runs-on: ubuntu-latest - steps: - - name: Print greeting - run: echo "Hello world!" - - name: Do work - run: echo "Double run with a name possible?" - - run: echo "Hopefully yes" - - name: Print goodbye - run: echo "Done - bye!" \ No newline at end of file + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file