diff --git a/.github/workflow/aaa.yml b/.github/workflow/aaa.yml new file mode 100644 index 0000000..da45a57 --- /dev/null +++ b/.github/workflow/aaa.yml @@ -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' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..c0c917e --- /dev/null +++ b/.github/workflows/main.yml @@ -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'