added hello world action
This commit is contained in:
20
.gitea/workflows/hello.yml
Normal file
20
.gitea/workflows/hello.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Hello Gitea Actions
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
hello:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Make script executable
|
||||
run: chmod +x hello.sh
|
||||
|
||||
- name: Run hello script
|
||||
run: ./hello.sh
|
||||
Reference in New Issue
Block a user