secret-test/.gitea/workflows/demo.yaml
Maximilian Keßler fd7ed1fc70
All checks were successful
Gitea Actions Demo / print (push) Successful in 4s
print secret encoded
2023-10-16 21:44:23 +02:00

14 lines
310 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 "${{ secrets.test }}" | base64
echo "${{ secrets.test }}" | base64 | base64 --decode