Files
devops/.gitea/workflows/cicd.yaml
2025-11-25 11:37:05 +03:30

21 lines
481 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 "Hello from Gitea Actions!"
echo "Runner: ${{ runner.name }}"
echo "Repo: ${{ gitea.repository }}"