„.gitea/workflows/build.yml“ ändern
Gitea Actions Demo / Test-Job (push) Successful in 7s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 19s

This commit is contained in:
2023-07-12 00:02:27 +02:00
parent aa11e30bab
commit c0c3ffe13e
+12 -11
View File
@@ -3,6 +3,17 @@ name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [workflow_dispatch, push] on: [workflow_dispatch, push]
jobs: jobs:
Test-Job:
runs-on: ubuntu-latest
steps:
- name: Print greeting
run: echo "Hello world!"
- name: Do work
run: |
echo "Double run with a name possible?"
echo "Hopefully yes"
- name: Print goodbye
run: echo "Done - bye!"
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -16,14 +27,4 @@ jobs:
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ github.workspace }} ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."
Test-Job:
runs-on: ubuntu-latest
steps:
- name: Print greeting
run: echo "Hello world!"
- name: Do work
run: echo "Double run with a name possible?"
- run: echo "Hopefully yes"
- name: Print goodbye
run: echo "Done - bye!"