2023-10-16 21:23:02 +02:00
|
|
|
name: Gitea Actions Demo
|
|
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
print:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-16 21:24:24 +02:00
|
|
|
- name: print secret
|
2023-10-16 21:30:21 +02:00
|
|
|
run: |
|
2023-10-16 21:27:42 +02:00
|
|
|
echo "The secret is ${{ secrets.test }}"
|
2023-10-16 21:31:18 +02:00
|
|
|
echo $$(( ${{ secrets.test }} + 1))
|
2023-10-16 21:27:42 +02:00
|
|
|
|