This commit is contained in:
commit
03b09de3ac
2 changed files with 19 additions and 0 deletions
15
.forgejo/workflows/hello.yml
Normal file
15
.forgejo/workflows/hello.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
name: Hello World CI
|
||||
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
hello:
|
||||
runs-on: linux
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run hello script
|
||||
run: ./hello.sh
|
||||
4
hello.sh
Executable file
4
hello.sh
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
echo "👋 Hello from Forgejo Runner!"
|
||||
echo "Running on host: $(hostname)"
|
||||
echo "Date: $(date)"
|
||||
Loading…
Add table
Add a link
Reference in a new issue