secret-test/.gitea/workflows/demo.yaml
Maximilian Keßler dfb8509efb
Some checks failed
Gitea Actions Demo / print (push) Failing after 4s
add 1 to secret
2023-10-16 21:31:18 +02:00

14 lines
297 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 }}"
echo $$(( ${{ secrets.test }} + 1))