commit 229eb1ec7e859f5f762638a4b92c9a5d2512f8cd Author: Nik Rozman Date: Thu Apr 24 21:31:33 2025 +0200 exmaple diff --git a/.github/workflows/test-env.yml b/.github/workflows/test-env.yml new file mode 100644 index 0000000..9c00c0a --- /dev/null +++ b/.github/workflows/test-env.yml @@ -0,0 +1,24 @@ +name: Prepare Build +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: +permissions: {} +jobs: + prepare: + name: Prepare + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Debug Secrets Presence + run: | + echo "from env S3_AK: ${S3_AK:0:4}****" + echo "from env TEST: ${TEST:0:4}****" + echo "from direct S3_AK: ${${{ secrets.S3_AK }}:0:4}****" + echo "from direct TEST: ${${{ secrets.TEST }}:0:4}****" + env: + S3_AK: ${{ secrets.S3_AK }} + TEST: ${{ secrets.TEST }} \ No newline at end of file