From 96846340f69dcdfc1d22b9929f80cb76e9c33140 Mon Sep 17 00:00:00 2001 From: daisuke harato Date: Sun, 25 Aug 2024 11:46:04 +0900 Subject: [PATCH] add --- .github/workflows/secrets.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/secrets.yaml 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