From 7bf7339b475691525845427e839906a227bde628 Mon Sep 17 00:00:00 2001 From: Dennis Thiessen Date: Sat, 15 Mar 2025 21:11:19 +0100 Subject: [PATCH] workflow yaml pushed --- .gitea/workflows/build+deploy.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/build+deploy.yaml diff --git a/.gitea/workflows/build+deploy.yaml b/.gitea/workflows/build+deploy.yaml new file mode 100644 index 0000000..a0cb4a4 --- /dev/null +++ b/.gitea/workflows/build+deploy.yaml @@ -0,0 +1,16 @@ +name: Build + Deploy +run-name: ${{ gitea.actor }} is deploying this page to production. +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "Checkout repository first." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file