Skip to content

Commit d7c23e8

Browse files
authored
Remove all the secret keys for ci (#1126)
1 parent 7b288ba commit d7c23e8

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

.github/workflows/actions.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,7 @@ jobs:
2727
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
2828
restore-keys: |
2929
${{ runner.os }}-pip-
30-
- name: Setup SSH Keys and known_hosts
31-
env:
32-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
33-
run: |
34-
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
35-
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
3630
- name: Install dependencies
37-
env:
38-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
3931
run: |
4032
pip install -r requirements.txt --progress-bar off
4133
pip install --no-deps -e "." --progress-bar off
@@ -70,15 +62,7 @@ jobs:
7062
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
7163
restore-keys: |
7264
${{ runner.os }}-pip-
73-
- name: Setup SSH Keys and known_hosts
74-
env:
75-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
76-
run: |
77-
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
78-
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
7965
- name: Install dependencies
80-
env:
81-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
8266
run: |
8367
pip install -r requirements.txt --progress-bar off
8468
pip install --no-deps -e "." --progress-bar off

.github/workflows/publish-to-pypi.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- name: Setup SSH Keys and known_hosts
11-
env:
12-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
13-
run: |
14-
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
15-
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
16-
- name: Install dependencies
17-
env:
18-
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
1910
- name: Install dependencies
2011
run: |
2112
pip install -r requirements.txt --progress-bar off

0 commit comments

Comments
 (0)