-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 943 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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