Add initial Gitea Actions workflow
All checks were successful
Hello Gitea Actions / build (push) Successful in 1m13s
All checks were successful
Hello Gitea Actions / build (push) Successful in 1m13s
This commit is contained in:
13
.gitea/workflows/demo.yaml
Normal file
13
.gitea/workflows/demo.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name: Hello Gitea Actions
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Run a one-line script
|
||||||
|
run: echo "Hello, Gitea Actions!"
|
||||||
|
- name: Run a multi-line script
|
||||||
|
run: |
|
||||||
|
echo Add other actions as you wish...
|
||||||
|
echo Such as building your code, running tests, or deploying.
|
||||||
Reference in New Issue
Block a user