11 lines
216 B
YAML
11 lines
216 B
YAML
name: Hello Gitea Actions
|
|
on: [push]
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 输出问候语
|
|
run: |
|
|
echo "hello, Gitea Actions!"
|
|
echo "当前时间是: $(date)" |