From 00eb444f5aefa9f11474a12c9f892c807e13708b Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Wed, 3 Jul 2024 03:38:51 +0100 Subject: [PATCH] add workflow --- .gitea/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..954f5ea --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,18 @@ +name: Gitea Actions Demo +run-name: ${{ github.actor }} is testing out Gitea Actions ๐Ÿš€ +on: [push] +jobs : + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "๐ŸŽŠThe Job was triggered by ${{ github.event_name }}!" + - run: echo "๐ŸงThis job is now running on a ${{ runner.os }} server." + - run: echo "๐Ÿ”Ž The name of the branch is ${{ github.ref }} and the repo is ${{ github.repository }}." + - name: Check out the repository code + uses: actions/checkout@v3 + - run: echo "The ${{ github.repository has be cloned }}" + - run: echo "๐Ÿ’ปThe workflow is now ready to test the code." + - name: List the files in the repo + run: | + ls ${{ github.workspace }} + - run: echo "๐Ÿ This job's status is ${{ job.status }}"