All checks were successful
Action Secrets Test / test-secret (push) Successful in 5s
21 lines
408 B
YAML
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
|