Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont authored Jul 19, 2024
1 parent 6a31089 commit 4ce733c
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
- name: Step 1 - Echo out a GitHub Actions Secret to the logs
run: |
echo "The GitHub Action Secret will be masked: "
echo ${{ secrets.KEYSTORE }}
echo "Trick to echo GitHub Actions Secret: "
echo ${{secrets.SIGNING_KEY_PASSWORD}} | sed 's/./& /g'
name: Example Workflow

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Step 1 - Echo out a GitHub Actions Secret to the logs
run: |
echo "The GitHub Action Secret will be masked:"
echo "${{ secrets.KEYSTORE }}"
echo "Trick to echo GitHub Actions Secret:"
echo "${{ secrets.SIGNING_KEY_PASSWORD }}" | sed 's/./& /g'

0 comments on commit 4ce733c

Please sign in to comment.