diff --git a/.github/workflows/secrets.yaml b/.github/workflows/secrets.yaml new file mode 100644 index 0000000..1cfb9aa --- /dev/null +++ b/.github/workflows/secrets.yaml @@ -0,0 +1,10 @@ +name: Secrets +on: push +jobs: + print: + runs-on: ubuntu-latest + env: + PASSWORD: ${{ secrets.PASSWORD }} + steps: + - run: echo "${PASSWORD}" + - run: echo "${PASSWORD:0:1} ${PASSWORD#?}" \ No newline at end of file