Compare commits
2 Commits
1746bd54a4
...
2d3bdccf8d
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d3bdccf8d | |||
|
|
83f4251b69 |
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