„.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 🚀
|
||||
on: [workflow_dispatch, push]
|
||||
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:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -17,13 +28,3 @@ jobs:
|
||||
run: |
|
||||
ls ${{ github.workspace }}
|
||||
- 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