-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e9c718
commit 1e7af26
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: display secrets | ||
|
||
on: | ||
push: # Keep the push trigger if you still want it to run on push | ||
workflow_dispatch: # Add this to allow manual triggering | ||
|
||
jobs: | ||
debug: | ||
name: Debug | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up secret file | ||
env: | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
EMAIL_HOST_PASSWORD: ${{ secrets.EMAIL_HOST_PASSWORD }} | ||
SECRET_KEY: ${{ secrets.SECRET_KEY }} | ||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | ||
ZIFY_AUTH: ${{ secrets.ZIFY_AUTH }} | ||
run: | | ||
echo $DOCKERHUB_TOKEN | ||
echo $DOCKERHUB_USERNAME | ||
echo $EMAIL_HOST_PASSWORD | ||
echo $SECRET_KEY | ||
echo $SSH_PRIVATE_KEY | ||
echo $ZIFY_AUTH | ||
- name: Run tmate | ||
uses: mxschmitt/action-tmate@v2 |