secret-test/.gitea/workflows/demo.yaml
Workflow config file is invalid. Please check your config file: yaml: line 11: could not find expected ':'

11 lines
244 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 ${{ secrets.test }}"