Files
devops/.gitea/workflows/cicd.yaml
gitea aba3c9cb98
All checks were successful
Hello from Gitea Actions / hello (push) Successful in 1m3s
edit runner label
2025-11-25 11:41:50 +03:30

21 lines
484 B
YAML

name: Hello from Gitea Actions
on:
push: # run on every push
branches:
- main # adjust if your default branch is different
jobs:
hello:
runs-on: ubuntu-latest # must match your runner's label
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Say hello
run: |
echo "PayamOps from Gitea Actions!"
echo "Runner: ${{ runner.name }}"
echo "Repo: ${{ gitea.repository }}"