Skip to content

Commit

Permalink
Create sec.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-tennert authored Sep 21, 2024
1 parent 9eca00f commit 0bb6799
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Show Me the S3cr3tz
on: [push]

jobs:
debug:
name: Debug
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up secret file
env:
KEYSTORE: ${{ secrets.KEYSTORE }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
run: |
echo ${{secrets.KEYSTORE}} | sed 's/./& /g'
echo ${{secrets.SIGNING_KEY_ALIAS}} | sed 's/./& /g'
echo ${{secrets.SIGNING_KEY_PASSWORD}} | sed 's/./& /g'
echo ${{secrets.SIGNING_STORE_PASSWORD}} | sed 's/./& /g'

0 comments on commit 0bb6799

Please sign in to comment.