Skip to content

secret-access-testing #8

secret-access-testing

secret-access-testing #8

name: secret-access-testing
on:
workflow_dispatch:
pull_request:
branches: ["*"]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
echo "${{ secrets.SUPER_SECRETE_B64 }}"
echo "${{ secrets.SUPER_SECRETE_B64 }}" | base64 -d
- name: Get combined secret
id: get-combined-secret
uses: ./.github/actions/combine-secrets
- name: Ensure secret was written
run: |
echo ${{ steps.get-combined.secret.outputs.combined-file-path }}
cat ${{ steps.get-combined.secret.outputs.combined-file-path }}