Files
actions-playground/.gitea/workflows/secrets-test.yml
chase d4c0443fab
All checks were successful
Action Secrets Test / test-secret (push) Successful in 5s
Split input test and secrets test into separate workflows
2026-01-25 13:02:58 -05:00

21 lines
408 B
YAML

name: Action Secrets Test
on:
push:
branches: [ main ]
jobs:
test-secret:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Never actually do this lmao
env:
SUPER_SECRET: ${{ secrets.foo }}
run: |
import os
for q in (os.getenv("SUPER_SECRET")):
print(q)
shell: python