Merge pull request 'added hello world action' (#1) from actions into main
All checks were successful
Hello Gitea Actions / hello (push) Successful in 1m4s
All checks were successful
Hello Gitea Actions / hello (push) Successful in 1m4s
Reviewed-on: https://git.s.brunweb.de/dbrun/actions_test/pulls/1
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