From c0c3ffe13e64022e60e9c913d15aa69035fc003c Mon Sep 17 00:00:00 2001 From: "tom.coursow" Date: Wed, 12 Jul 2023 00:02:27 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9E.gitea/workflows/build.yml=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) 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