secret-test/.gitea/workflows/demo.yaml

14 lines
310 B
YAML
Raw Normal View History

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:44:23 +02:00
echo "${{ secrets.test }}" | base64
echo "${{ secrets.test }}" | base64 | base64 --decode
2023-10-16 21:27:42 +02:00