„.gitea/workflows/build.yml“ ändern
This commit is contained in:
+11
-10
@@ -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:
|
||||||
@@ -17,13 +28,3 @@ jobs:
|
|||||||
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!"
|
|
||||||
Reference in New Issue
Block a user