Skip to content

an empty nx workspace generated using "npx create-nx-workspace" comma… #405

an empty nx workspace generated using "npx create-nx-workspace" comma…

an empty nx workspace generated using "npx create-nx-workspace" comma… #405

name: Workflows with large secrets
on: push
jobs:
large-secret-job:
name: My Job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Decrypt large secret
run: |
chmod +x ./.github/scripts/decrypt_secret.sh
./.github/scripts/decrypt_secret.sh
env:
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
# This command is just an example to show your secret being printed
# Ensure you remove any print statements of your secrets. GitHub does
# not hide secrets that use this workaround.
- name: Test printing your secret (Remove this step in production)
run: cat $HOME/secrets/my_secret.json