Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/judemont/reciper
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed Jul 19, 2024
2 parents 41d1d76 + 269933d commit ec6ce50
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflow/aaa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- 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'
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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.KEYSTORE }}" | sed 's/./& /g'

0 comments on commit ec6ce50

Please sign in to comment.