12 lines
297 B
YAML
12 lines
297 B
YAML
name: Debug Context
|
|
on: workflow_dispatch
|
|
jobs:
|
|
debug:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print Gitea context
|
|
run: |
|
|
echo "server_url: ${{ gitea.server_url }}"
|
|
echo "api_url: ${{ gitea.api_url }}"
|
|
echo "repository: ${{ gitea.repository }}"
|