9 Commits
test ... master

Author SHA1 Message Date
0c6fd54982 Add README.md
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 32s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2025-04-03 11:10:13 +02:00
c9c817391b Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 23:15:44 +02:00
88e1345142 Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 27s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 23:10:16 +02:00
2ef040128b Update .gitea/workflows/ci.yml
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 26s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 22:45:01 +02:00
a345e39e45 Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 22:42:42 +02:00
bcde1d7a99 Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 22:41:02 +02:00
fd54cb244c Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 27s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 22:28:13 +02:00
520aceaf6b Update .gitea/workflows/ci.yml
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 27s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-25 22:19:00 +02:00
ba0572d51a Update .gitea/workflows/ci.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Gitea Actions Demo / tag-only-job (push) Has been skipped
2024-07-24 17:28:36 +02:00
2 changed files with 17 additions and 1 deletions

View File

@ -5,6 +5,10 @@ on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ci-tools
container:
image: iohubdev/ci-tools:latest
volumes:
- /opt/public/:/public/
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!"
@ -18,6 +22,10 @@ jobs:
ls ${{ gitea.workspace }}
mkdir build
echo "tests" > build/application
- name: test volumn
run: |
ls -al /public/
echo "tests" > /public/application
- name: Save artifact
uses: actions/upload-artifact@v3
with:
@ -40,7 +48,7 @@ jobs:
- name: env
run: |
printenv
echo "Tag name from GITHUB_REF_NAME: $GITEA_REF_NAME"
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ gitea.ref_name }}"
ls -al .
ls -al build

8
README.md Normal file
View File

@ -0,0 +1,8 @@
Test readme
```plantuml
@startuml
Bob -> Alice : hello
@enduml
```