12 lines
237 B
YAML
12 lines
237 B
YAML
|
name: Gitea Actions Demo
|
||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
print:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
name: print secret
|
||
|
run:
|
||
|
echo "The secret is ${{ test.secret }}"
|