Skip to content

Commit

Permalink
chore: test registering secret
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloud-Xero committed Jun 8, 2024
1 parent ac9b64f commit 42b212b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/secrets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Secrets
on: push
jobs:
print:
runs-on: ubuntu-latast
env:
PASSWORD: ${{ secrets.PASSWORD }} # Secrets の参照
steps:
- run: echo "${PASSWORD}" # ログ出力はマスクされる
- run: echo "${PASSWORD:0:1} ${PASSWORD#?}" # ログ出力はマスクされない

0 comments on commit 42b212b

Please sign in to comment.