Created
February 22, 2024 10:55
-
-
Save grzegorzkrukowski/0188c907a3ac9db0a18cfa4f75fb1582 to your computer and use it in GitHub Desktop.
Workflow to release secrets through a GITHUB action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reveal secrets | |
on: workflow_dispatch | |
jobs: | |
debug: | |
name: Debug | |
runs-on: ubuntu-latest | |
steps: | |
- name: Show secrets | |
run: | | |
echo ${{secrets.AWS_ACCESS_KEY_ID}} | sed 's/./& /g' | |
echo ${{secrets.AWS_SECRET_ACCESS_KEY}} | sed 's/./& /g' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment