Skip to content

Commit

Permalink
Remove all the secret keys for ci (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdangerw authored Jul 10, 2023
1 parent 7b288ba commit d7c23e8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,7 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup SSH Keys and known_hosts
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
- name: Install dependencies
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
pip install -r requirements.txt --progress-bar off
pip install --no-deps -e "." --progress-bar off
Expand Down Expand Up @@ -70,15 +62,7 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup SSH Keys and known_hosts
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
- name: Install dependencies
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
pip install -r requirements.txt --progress-bar off
pip install --no-deps -e "." --progress-bar off
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup SSH Keys and known_hosts
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.KERAS_CORE }}"
- name: Install dependencies
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
- name: Install dependencies
run: |
pip install -r requirements.txt --progress-bar off
Expand Down

0 comments on commit d7c23e8

Please sign in to comment.