13 lines
297 B
YAML
13 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))
|
|
|