more actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 27s

This commit is contained in:
Jens Heinitz
2026-07-29 09:16:55 +02:00
parent faf8da81e7
commit 7159af6a7a
+6
View File
@@ -8,6 +8,7 @@ jobs:
container: container:
volumes: volumes:
- /workspace:/workspace - /workspace:/workspace
- /opt/evcc3:/opt/evcc3
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - 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!" - 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 - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} 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 }}." - run: echo "🍏 This job's status is ${{ job.status }}."