17 lines
451 B
YAML
17 lines
451 B
YAML
name: demo
|
|
on: [push]
|
|
|
|
# ponytail: GIT_SSL_NO_VERIFY is here only because Traefik still serves its
|
|
# default self-signed cert for git.kessinen.com. Remove it once the
|
|
# LE-DNS01-cloudflare runbook has been run.
|
|
env:
|
|
GIT_SSL_NO_VERIFY: "true"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "hello from ${{ gitea.repository }} on ${{ gitea.ref }}"
|
|
- uses: actions/checkout@v4
|
|
- run: ls -la && git log --oneline -1
|