Compare commits

...
3 Commits
Author SHA1 Message Date
Jens Heinitz 7159af6a7a more actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 27s
2026-07-29 09:16:55 +02:00
Jens Heinitz faf8da81e7 remove test3.txt
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 31s
2026-07-29 09:12:21 +02:00
Jens Heinitz 3dd8b72b34 use workspace as volume
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 24s
2026-07-28 21:23:02 +02:00
2 changed files with 7 additions and 3 deletions
+7 -1
View File
@@ -7,7 +7,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
volumes: volumes:
- data:/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 }}."
-2
View File
@@ -1,2 +0,0 @@
This is a test file.
This is a second line.