From 7159af6a7a28352f4c4301937d64272746c1526d Mon Sep 17 00:00:00 2001 From: Jens Heinitz Date: Wed, 29 Jul 2026 09:16:55 +0200 Subject: [PATCH] more actions --- .gitea/workflows/demo.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 165c41d..e0bd3ae 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -8,6 +8,7 @@ jobs: container: volumes: - /workspace:/workspace + - /opt/evcc3:/opt/evcc3 steps: - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" @@ -23,4 +24,9 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} + - name: create file in /opt/evcc3 + run: touch /opt/evcc3/dummy.txt + - name: list files in /opt/evcc3 + run: | + ls -al /opt/evcc3 - run: echo "🍏 This job's status is ${{ job.status }}."